style: format Rust rename updates

This commit is contained in:
lucaronin
2026-04-12 01:41:26 +02:00
parent 361898b187
commit 010bc32ee1
4 changed files with 39 additions and 13 deletions

View File

@@ -101,7 +101,10 @@ fn run_git(dir: &Path, args: &[&str]) -> Result<(), String> {
/// Set local user.name and user.email if not already configured.
fn ensure_author_config(dir: &Path) -> Result<(), String> {
for (key, fallback) in [("user.name", "Tolaria"), ("user.email", "vault@tolaria.app")] {
for (key, fallback) in [
("user.name", "Tolaria"),
("user.email", "vault@tolaria.app"),
] {
let check = Command::new("git")
.args(["config", key])
.current_dir(dir)