diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 10:09:10 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 10:16:10 +0900 |
| commit | 35690acf83fa4473311a18e970ecd8156e1e6ac0 (patch) | |
| tree | 241e3661437c8f40890716cf428cea1387957262 /crates/shirabe/src/util | |
| parent | e85c1c6c86a42b9aee5687b943743520fc677844 (diff) | |
| download | php-shirabe-35690acf83fa4473311a18e970ecd8156e1e6ac0.tar.gz php-shirabe-35690acf83fa4473311a18e970ecd8156e1e6ac0.tar.zst php-shirabe-35690acf83fa4473311a18e970ecd8156e1e6ac0.zip | |
fix(shirabe): correct invalid import paths and add missing dependency
Diffstat (limited to 'crates/shirabe/src/util')
| -rw-r--r-- | crates/shirabe/src/util/http_downloader.rs | 2 | ||||
| -rw-r--r-- | crates/shirabe/src/util/remote_filesystem.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/util/http_downloader.rs b/crates/shirabe/src/util/http_downloader.rs index 5786da3..34f0642 100644 --- a/crates/shirabe/src/util/http_downloader.rs +++ b/crates/shirabe/src/util/http_downloader.rs @@ -3,6 +3,7 @@ use anyhow::Result; use indexmap::IndexMap; +use crate::util::silencer::Silencer; use shirabe_external_packages::composer::pcre::preg::Preg; use shirabe_external_packages::react::promise::promise::Promise; use shirabe_external_packages::react::promise::promise_interface::PromiseInterface; @@ -11,7 +12,6 @@ use shirabe_php_shim::{ extension_loaded, file_get_contents, function_exists, implode, is_numeric, max, min, rawurldecode, stream_context_create, stripos, strpos, substr, ucfirst, }; -use crate::util::silencer::Silencer; use shirabe_semver::constraint::constraint::Constraint; use crate::composer::Composer; diff --git a/crates/shirabe/src/util/remote_filesystem.rs b/crates/shirabe/src/util/remote_filesystem.rs index 14b771d..0674df4 100644 --- a/crates/shirabe/src/util/remote_filesystem.rs +++ b/crates/shirabe/src/util/remote_filesystem.rs @@ -11,13 +11,13 @@ use shirabe_php_shim::{ }; use crate::config::Config; -use crate::downloader::http_downloader::HttpDownloader; use crate::downloader::max_file_size_exceeded_exception::MaxFileSizeExceededException; use crate::downloader::transport_exception::TransportException; use crate::io::io_interface::IOInterface; use crate::util::auth_helper::AuthHelper; use crate::util::http::proxy_manager::ProxyManager; use crate::util::http::response::Response; +use crate::util::http_downloader::HttpDownloader; use crate::util::platform::Platform; use crate::util::stream_context_factory::StreamContextFactory; use crate::util::url::Url; |
