From f18c18cd15f180b5067069ec6f10530515715f3d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 9 May 2026 12:15:21 +0900 Subject: refactor(console): accept format args directly in console_writeln! macros Eliminate the nested &console_format!(...) boilerplate at every call site by teaching console_writeln!, console_write!, console_writeln_error!, and console_write_error! to accept a format literal + variadic args directly, matching the println!/eprintln! ergonomics. Propagate the format string span into generated code so rustc errors point to the right location. Co-Authored-By: Claude Sonnet 4.6 --- crates/mozart/src/commands/about.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'crates/mozart/src/commands/about.rs') diff --git a/crates/mozart/src/commands/about.rs b/crates/mozart/src/commands/about.rs index 1dd6b85..04c3aa1 100644 --- a/crates/mozart/src/commands/about.rs +++ b/crates/mozart/src/commands/about.rs @@ -1,7 +1,6 @@ use clap::Args; use mozart_core::MOZART_VERSION; use mozart_core::console; -use mozart_core::console_format; use mozart_core::console_writeln; #[derive(Args)] @@ -14,11 +13,9 @@ pub async fn execute( ) -> anyhow::Result<()> { console_writeln!( console, - &console_format!( - r#"Mozart - Dependency Manager for PHP - version {MOZART_VERSION} + r#"Mozart - Dependency Manager for PHP - version {MOZART_VERSION} Mozart is a dependency manager tracking local dependencies of your projects and libraries. -See https://getcomposer.org/ for more information."# - ), +See https://getcomposer.org/ for more information."#, ); Ok(()) } -- cgit v1.3.1