We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0db57 commit e3fec47Copy full SHA for e3fec47
tools/ci/src/commands/what_to_run.rs
@@ -17,7 +17,7 @@ pub struct WhatToRunCommand {
17
18
/// select tasks for a specific version of rust
19
#[argh(option)]
20
- #[expect(dead_code)]
+ #[expect(dead_code, reason = "todo")]
21
rust_version: RustVersion,
22
}
23
@@ -71,7 +71,7 @@ impl WhatToRunCommand {
71
jobs.push(r#""cargo run -p ci -- test""#);
72
jobs.push(r#""cargo run -p ci -- lints""#);
73
74
- println!("[{}]", jobs.join(", "))
+ println!("[{}]", jobs.join(", "));
75
76
77
0 commit comments