We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tool::CargoClippy
1 parent e0be1a0 commit 13f3bd1Copy full SHA for 13f3bd1
src/bootstrap/src/core/build_steps/tool.rs
@@ -1187,12 +1187,17 @@ fn run_tool_build_step(
1187
}
1188
1189
tool_extended!(Cargofmt { path: "src/tools/rustfmt", tool_name: "cargo-fmt", stable: true });
1190
-tool_extended!(CargoClippy { path: "src/tools/clippy", tool_name: "cargo-clippy", stable: true });
+tool_extended!(CargoClippy {
1191
+ path: "src/tools/clippy",
1192
+ tool_name: "cargo-clippy",
1193
+ stable: true,
1194
+ add_bins_to_sysroot: ["cargo-clippy"]
1195
+});
1196
tool_extended!(Clippy {
1197
path: "src/tools/clippy",
1198
tool_name: "clippy-driver",
1199
stable: true,
- add_bins_to_sysroot: ["clippy-driver", "cargo-clippy"]
1200
+ add_bins_to_sysroot: ["clippy-driver"]
1201
});
1202
tool_extended!(Miri {
1203
path: "src/tools/miri",
0 commit comments