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