We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f91e93 + 98cbd2e commit ab224e4Copy full SHA for ab224e4
src/rustup-win-installer/src/lib.rs
@@ -27,6 +27,7 @@ static TOOLS: &'static [&'static str] = &[
27
"rustfmt",
28
"cargo-fmt",
29
"cargo-clippy",
30
+ "cargo-miri",
31
];
32
33
#[no_mangle]
src/rustup/lib.rs
@@ -31,6 +31,7 @@ pub static TOOLS: &'static [&'static str] = &[
"rust-gdb",
"rls",
34
35
36
37
// Tools which are commonly installed by Cargo as well as rustup. We take a bit
@@ -54,6 +55,7 @@ fn component_for_bin(binary: &str) -> Option<&'static str> {
54
55
"rust-gdb" => Some("gdb-preview"),
56
"rls" => Some("rls"),
57
"cargo-clippy" => Some("clippy"),
58
+ "cargo-miri" => Some("miri"),
59
"rustfmt" | "cargo-fmt" => Some("rustfmt"),
60
_ => None,
61
}
0 commit comments