We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84257d6 commit 196849bCopy full SHA for 196849b
src/bootstrap/src/core/build_steps/dist.rs
@@ -1591,9 +1591,15 @@ impl Step for Extended {
1591
prepare("cargo");
1592
prepare("rust-std");
1593
prepare("rust-analysis");
1594
- prepare("clippy");
1595
- prepare("rust-analyzer");
1596
- for tool in &["rust-docs", "miri", "rustc-codegen-cranelift"] {
+
+ for tool in &[
+ "clippy",
1597
+ "rustfmt",
1598
+ "rust-analyzer",
1599
+ "rust-docs",
1600
+ "miri",
1601
+ "rustc-codegen-cranelift",
1602
+ ] {
1603
if built_tools.contains(tool) {
1604
prepare(tool);
1605
}
0 commit comments