@@ -1430,7 +1430,7 @@ impl Step for Extended {
1430
1430
1431
1431
let xform = |p : & Path | {
1432
1432
let mut contents = t ! ( fs:: read_to_string( p) ) ;
1433
- for tool in & [ "rust-demangler" , "rust-analyzer" , "rustfmt" ] {
1433
+ for tool in & [ "rust-demangler" ] {
1434
1434
if !built_tools. contains ( tool) {
1435
1435
contents = filter ( & contents, tool) ;
1436
1436
}
@@ -1471,7 +1471,8 @@ impl Step for Extended {
1471
1471
prepare ( "rust-analysis" ) ;
1472
1472
prepare ( "clippy" ) ;
1473
1473
prepare ( "miri" ) ;
1474
- for tool in & [ "rust-docs" , "rust-demangler" , "rust-analyzer" ] {
1474
+ prepare ( "rust-analyzer" ) ;
1475
+ for tool in & [ "rust-docs" , "rust-demangler" ] {
1475
1476
if built_tools. contains ( tool) {
1476
1477
prepare ( tool) ;
1477
1478
}
@@ -1531,7 +1532,8 @@ impl Step for Extended {
1531
1532
prepare ( "rust-std" ) ;
1532
1533
prepare ( "clippy" ) ;
1533
1534
prepare ( "miri" ) ;
1534
- for tool in & [ "rust-demangler" , "rust-analyzer" ] {
1535
+ prepare ( "rust-analyzer" ) ;
1536
+ for tool in & [ "rust-demangler" ] {
1535
1537
if built_tools. contains ( tool) {
1536
1538
prepare ( tool) ;
1537
1539
}
@@ -1615,25 +1617,23 @@ impl Step for Extended {
1615
1617
. arg ( "-out" )
1616
1618
. arg ( exe. join ( "StdGroup.wxs" ) ) ,
1617
1619
) ;
1618
- if built_tools. contains ( "rust-analyzer" ) {
1619
- builder. run (
1620
- Command :: new ( & heat)
1621
- . current_dir ( & exe)
1622
- . arg ( "dir" )
1623
- . arg ( "rust-analyzer" )
1624
- . args ( & heat_flags)
1625
- . arg ( "-cg" )
1626
- . arg ( "RustAnalyzerGroup" )
1627
- . arg ( "-dr" )
1628
- . arg ( "RustAnalyzer" )
1629
- . arg ( "-var" )
1630
- . arg ( "var.RustAnalyzerDir" )
1631
- . arg ( "-out" )
1632
- . arg ( exe. join ( "RustAnalyzerGroup.wxs" ) )
1633
- . arg ( "-t" )
1634
- . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1635
- ) ;
1636
- }
1620
+ builder. run (
1621
+ Command :: new ( & heat)
1622
+ . current_dir ( & exe)
1623
+ . arg ( "dir" )
1624
+ . arg ( "rust-analyzer" )
1625
+ . args ( & heat_flags)
1626
+ . arg ( "-cg" )
1627
+ . arg ( "RustAnalyzerGroup" )
1628
+ . arg ( "-dr" )
1629
+ . arg ( "RustAnalyzer" )
1630
+ . arg ( "-var" )
1631
+ . arg ( "var.RustAnalyzerDir" )
1632
+ . arg ( "-out" )
1633
+ . arg ( exe. join ( "RustAnalyzerGroup.wxs" ) )
1634
+ . arg ( "-t" )
1635
+ . arg ( etc. join ( "msi/remove-duplicates.xsl" ) ) ,
1636
+ ) ;
1637
1637
builder. run (
1638
1638
Command :: new ( & heat)
1639
1639
. current_dir ( & exe)
0 commit comments