From 5e31fa33c3b5cf726a57a063b8e7a070869250fe Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 19 May 2026 21:46:01 +0900 Subject: fix(compile): fix more random compile errors Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe/src/downloader/phar_downloader.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/shirabe/src/downloader/phar_downloader.rs') diff --git a/crates/shirabe/src/downloader/phar_downloader.rs b/crates/shirabe/src/downloader/phar_downloader.rs index 649841d..19777fb 100644 --- a/crates/shirabe/src/downloader/phar_downloader.rs +++ b/crates/shirabe/src/downloader/phar_downloader.rs @@ -25,12 +25,12 @@ pub struct PharDownloader { impl PharDownloader { pub fn new( io: Box, - config: Config, - http_downloader: HttpDownloader, + config: std::rc::Rc>, + http_downloader: std::rc::Rc>, event_dispatcher: Option, cache: Option, - filesystem: Filesystem, - process: ProcessExecutor, + filesystem: std::rc::Rc>, + process: std::rc::Rc>, ) -> Self { Self { inner: FileDownloader::new( -- cgit v1.3.1