From a7ba9cac5f0fb0c5cf3befc61d2624d0a51bd2ad Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 16:17:20 +0900 Subject: fix(compile): add stubs for missing trait implementations --- crates/shirabe/src/command/install_command.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'crates/shirabe/src/command/install_command.rs') diff --git a/crates/shirabe/src/command/install_command.rs b/crates/shirabe/src/command/install_command.rs index 04d630b..227ba22 100644 --- a/crates/shirabe/src/command/install_command.rs +++ b/crates/shirabe/src/command/install_command.rs @@ -25,7 +25,15 @@ pub struct InstallCommand { io: Option>, } -impl CompletionTrait for InstallCommand {} +impl CompletionTrait for InstallCommand { + fn require_composer( + &self, + disable_plugins: Option, + disable_scripts: Option, + ) -> Composer { + todo!() + } +} impl InstallCommand { pub fn configure(&mut self) { -- cgit v1.3.1