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 --- Cargo.lock | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index cbd1046..59e6c03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1090,6 +1090,7 @@ dependencies = [ "indexmap", "mozart-archiver", "mozart-autoload", + "mozart-console-macros", "mozart-core", "mozart-registry", "mozart-semver", @@ -1200,6 +1201,7 @@ dependencies = [ "flate2", "indexmap", "md5", + "mozart-console-macros", "mozart-core", "mozart-metadata-minifier", "mozart-php-serialize", -- cgit v1.3.1