From 7f83e785a77fbdbcada9c6714703d4e5801af82a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 29 May 2026 00:16:56 +0900 Subject: refactor(io): unify IOInterface params to Rc> Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe/src/command/create_project_command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/src/command/create_project_command.rs') diff --git a/crates/shirabe/src/command/create_project_command.rs b/crates/shirabe/src/command/create_project_command.rs index c669aa5..e52fe39 100644 --- a/crates/shirabe/src/command/create_project_command.rs +++ b/crates/shirabe/src/command/create_project_command.rs @@ -816,7 +816,7 @@ impl CreateProjectCommand { &stability, None, 0, - Some(&*io.borrow()), + Some(io.clone()), PhpMixed::Bool(true), )?; @@ -926,7 +926,7 @@ impl CreateProjectCommand { true, false, )?; - im.notify_installs(&*io.borrow()); + im.notify_installs(io.clone()); // collect suggestions // TODO(phase-b): self.suggested_packages_reporter is on the outer scope via &self -- cgit v1.3.1