aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/fund.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-09 12:15:21 +0900
committernsfisis <nsfisis@gmail.com>2026-05-09 12:15:53 +0900
commitf18c18cd15f180b5067069ec6f10530515715f3d (patch)
tree85ea3d3f10da9b32359dc3797fc7e6d262ae6752 /crates/mozart/src/commands/fund.rs
parentf0192390ae1d89981f59395307e885a595f86eef (diff)
downloadphp-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.tar.gz
php-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.tar.zst
php-mozart-f18c18cd15f180b5067069ec6f10530515715f3d.zip
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 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart/src/commands/fund.rs')
-rw-r--r--crates/mozart/src/commands/fund.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/mozart/src/commands/fund.rs b/crates/mozart/src/commands/fund.rs
index 707e9ee..1f334b3 100644
--- a/crates/mozart/src/commands/fund.rs
+++ b/crates/mozart/src/commands/fund.rs
@@ -157,15 +157,15 @@ fn render_text(fundings: &BTreeMap<String, BTreeMap<String, Vec<String>>>, conso
let mut prev: Option<String> = None;
for (vendor, url_map) in fundings {
console_writeln!(console, "");
- console_writeln!(console, &console_format!("<comment>{vendor}</comment>"));
+ console_writeln!(console, "<comment>{vendor}</comment>");
for (url, packages) in url_map {
let line = format!(" <info>{}</info>", packages.join(", "));
if prev.as_deref() != Some(line.as_str()) {
- console_writeln!(console, &console_format!("{line}"));
+ console_writeln!(console, "{line}");
prev = Some(line);
}
let link = hyperlink(url, url, console.decorated);
- console_writeln!(console, &format!(" {link}"));
+ console_writeln!(console, " {link}");
}
}
@@ -192,7 +192,7 @@ fn render_json(
} else {
fundings.serialize(&mut ser)?;
}
- console_writeln!(console, &String::from_utf8(ser.into_inner())?);
+ console_writeln!(console, "{}", &String::from_utf8(ser.into_inner())?);
Ok(())
}