@@ -1644,8 +1644,6 @@ impl Step for Extended {
1644
1644
"rust-analyzer-preview" . to_string ( )
1645
1645
} else if name == "clippy" {
1646
1646
"clippy-preview" . to_string ( )
1647
- } else if name == "rustfmt" {
1648
- "rustfmt-preview" . to_string ( )
1649
1647
} else if name == "miri" {
1650
1648
"miri-preview" . to_string ( )
1651
1649
} else if name == "rustc-codegen-cranelift" {
@@ -1665,7 +1663,7 @@ impl Step for Extended {
1665
1663
prepare ( "cargo" ) ;
1666
1664
prepare ( "rust-analysis" ) ;
1667
1665
prepare ( "rust-std" ) ;
1668
- for tool in & [ "clippy" , "rustfmt" , " rust-analyzer", "rust-docs" , "miri" ] {
1666
+ for tool in & [ "clippy" , "rust-analyzer" , "rust-docs" , "miri" ] {
1669
1667
if built_tools. contains ( tool) {
1670
1668
prepare ( tool) ;
1671
1669
}
@@ -1783,24 +1781,6 @@ impl Step for Extended {
1783
1781
. arg ( etc. join ( "msi/remove-duplicates.xsl" ) )
1784
1782
. run ( builder) ;
1785
1783
}
1786
- if built_tools. contains ( "rustfmt" ) {
1787
- command ( & heat)
1788
- . current_dir ( & exe)
1789
- . arg ( "dir" )
1790
- . arg ( "rustfmt" )
1791
- . args ( heat_flags)
1792
- . arg ( "-cg" )
1793
- . arg ( "RustFmtGroup" )
1794
- . arg ( "-dr" )
1795
- . arg ( "RustFmt" )
1796
- . arg ( "-var" )
1797
- . arg ( "var.RustFmtDir" )
1798
- . arg ( "-out" )
1799
- . arg ( exe. join ( "RustFmtGroup.wxs" ) )
1800
- . arg ( "-t" )
1801
- . arg ( etc. join ( "msi/remove-duplicates.xsl" ) )
1802
- . run ( builder) ;
1803
- }
1804
1784
if built_tools. contains ( "miri" ) {
1805
1785
command ( & heat)
1806
1786
. current_dir ( & exe)
@@ -1872,9 +1852,6 @@ impl Step for Extended {
1872
1852
if built_tools. contains ( "clippy" ) {
1873
1853
cmd. arg ( "-dClippyDir=clippy" ) ;
1874
1854
}
1875
- if built_tools. contains ( "rustfmt" ) {
1876
- cmd. arg ( "-dRustFmtDir=rustfmt" ) ;
1877
- }
1878
1855
if built_tools. contains ( "rust-docs" ) {
1879
1856
cmd. arg ( "-dDocsDir=rust-docs" ) ;
1880
1857
}
@@ -1901,9 +1878,6 @@ impl Step for Extended {
1901
1878
if built_tools. contains ( "clippy" ) {
1902
1879
candle ( "ClippyGroup.wxs" . as_ref ( ) ) ;
1903
1880
}
1904
- if built_tools. contains ( "rustfmt" ) {
1905
- candle ( "RustFmtGroup.wxs" . as_ref ( ) ) ;
1906
- }
1907
1881
if built_tools. contains ( "miri" ) {
1908
1882
candle ( "MiriGroup.wxs" . as_ref ( ) ) ;
1909
1883
}
@@ -1942,9 +1916,6 @@ impl Step for Extended {
1942
1916
if built_tools. contains ( "clippy" ) {
1943
1917
cmd. arg ( "ClippyGroup.wixobj" ) ;
1944
1918
}
1945
- if built_tools. contains ( "rustfmt" ) {
1946
- cmd. arg ( "RustFmtGroup.wixobj" ) ;
1947
- }
1948
1919
if built_tools. contains ( "miri" ) {
1949
1920
cmd. arg ( "MiriGroup.wixobj" ) ;
1950
1921
}
0 commit comments