aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/installer/plugin_installer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/installer/plugin_installer.rs')
-rw-r--r--crates/shirabe/src/installer/plugin_installer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/installer/plugin_installer.rs b/crates/shirabe/src/installer/plugin_installer.rs
index 38fcb0d..8776103 100644
--- a/crates/shirabe/src/installer/plugin_installer.rs
+++ b/crates/shirabe/src/installer/plugin_installer.rs
@@ -1,6 +1,6 @@
//! ref: composer/src/Composer/Installer/PluginInstaller.php
-use crate::composer::PartialComposerWeakHandle;
+use crate::composer::AnyComposerWeakHandle;
use crate::installer::BinaryInstaller;
use crate::installer::InstallerInterface;
use crate::installer::LibraryInstaller;
@@ -22,7 +22,7 @@ pub struct PluginInstaller {
impl PluginInstaller {
pub fn new(
io: std::rc::Rc<std::cell::RefCell<dyn IOInterface>>,
- composer: PartialComposerWeakHandle,
+ composer: AnyComposerWeakHandle,
fs: Option<std::rc::Rc<std::cell::RefCell<Filesystem>>>,
binary_installer: Option<BinaryInstaller>,
) -> Self {