style: cargo fmt fixup for 1.9 feature edits

This commit is contained in:
2026-04-07 20:14:50 +01:00
parent 41df3c2dfd
commit 7214d0ab5d
4 changed files with 6 additions and 14 deletions

View File

@@ -65,10 +65,7 @@ pub async fn run(
.collect();
println!(
"{}",
render_table(
&["Name", "ID", "Version", "Steps", "Description"],
&rows
)
render_table(&["Name", "ID", "Version", "Steps", "Description"], &rows)
);
println!("{} definition(s)", resp.definitions.len());
}

View File

@@ -131,9 +131,8 @@ async fn dispatch(
Command::Watch(args) => watch::run(args, client).await,
Command::Logs(args) => logs::run(args, client).await,
Command::SearchLogs(args) => search_logs::run(args, client, format).await,
Command::Login(_)
| Command::Logout(_)
| Command::Whoami(_)
| Command::Validate(_) => unreachable!(),
Command::Login(_) | Command::Logout(_) | Command::Whoami(_) | Command::Validate(_) => {
unreachable!()
}
}
}