We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 297b177 + 84f3dc8 commit 35d6f4bCopy full SHA for 35d6f4b
2 files changed
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
+ "clippy-driver",
31
"cargo-miri",
32
];
33
src/rustup/lib.rs
@@ -15,6 +15,7 @@ pub static TOOLS: &'static [&'static str] = &[
15
"rust-gdb",
16
"rls",
17
18
19
20
21
@@ -39,6 +40,7 @@ fn component_for_bin(binary: &str) -> Option<&'static str> {
39
40
"rust-gdb" => Some("gdb-preview"),
41
"rls" => Some("rls"),
42
"cargo-clippy" => Some("clippy"),
43
+ "clippy-driver" => Some("clippy"),
44
"cargo-miri" => Some("miri"),
45
"rustfmt" | "cargo-fmt" => Some("rustfmt"),
46
_ => None,
0 commit comments