aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/self_update
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/self_update')
-rw-r--r--crates/shirabe/src/self_update/mod.rs3
-rw-r--r--crates/shirabe/src/self_update/versions.rs6
2 files changed, 6 insertions, 3 deletions
diff --git a/crates/shirabe/src/self_update/mod.rs b/crates/shirabe/src/self_update/mod.rs
index 4f9f188..5594811 100644
--- a/crates/shirabe/src/self_update/mod.rs
+++ b/crates/shirabe/src/self_update/mod.rs
@@ -1,2 +1,5 @@
pub mod keys;
pub mod versions;
+
+pub use keys::*;
+pub use versions::*;
diff --git a/crates/shirabe/src/self_update/versions.rs b/crates/shirabe/src/self_update/versions.rs
index 36c6dea..c503007 100644
--- a/crates/shirabe/src/self_update/versions.rs
+++ b/crates/shirabe/src/self_update/versions.rs
@@ -1,10 +1,10 @@
//! ref: composer/src/Composer/SelfUpdate/Versions.php
use crate::config::Config;
-use crate::io::io_interface::IOInterface;
-use crate::util::http_downloader::HttpDownloader;
+use crate::io::IOInterface;
+use crate::util::HttpDownloader;
use indexmap::IndexMap;
-use shirabe_external_packages::composer::pcre::preg::Preg;
+use shirabe_external_packages::composer::pcre::Preg;
use shirabe_php_shim::{
InvalidArgumentException, PHP_EOL, PHP_VERSION, PHP_VERSION_ID, PhpMixed,
UnexpectedValueException,