From 3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 14:33:13 +0900 Subject: fix(compile): extract constants from traits to make them dyn-compatible --- crates/shirabe/src/command/config_command.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/command/config_command.rs') diff --git a/crates/shirabe/src/command/config_command.rs b/crates/shirabe/src/command/config_command.rs index 62e630a..a539d69 100644 --- a/crates/shirabe/src/command/config_command.rs +++ b/crates/shirabe/src/command/config_command.rs @@ -1,5 +1,6 @@ //! ref: composer/src/Composer/Command/ConfigCommand.php +use crate::io::io_interface; use indexmap::IndexMap; use shirabe_external_packages::composer::pcre::preg::Preg; @@ -483,7 +484,7 @@ impl ConfigCommand { self.inner.inner.get_io().write( &format!("{}{}", value_str, source_of_config_value), true, - IOInterface::QUIET, + io_interface::QUIET, ); return Ok(0); @@ -1364,7 +1365,7 @@ impl ConfigCommand { source ), true, - IOInterface::QUIET, + io_interface::QUIET, ); } else { io.write( @@ -1377,7 +1378,7 @@ impl ConfigCommand { source ), true, - IOInterface::QUIET, + io_interface::QUIET, ); } } -- cgit v1.3.1