@@ -1634,8 +1634,6 @@ impl Step for Extended {
1634
1634
"rust-analyzer-preview" . to_string ( )
1635
1635
} else if name == "clippy" {
1636
1636
"clippy-preview" . to_string ( )
1637
- } else if name == "rustfmt" {
1638
- "rustfmt-preview" . to_string ( )
1639
1637
} else if name == "miri" {
1640
1638
"miri-preview" . to_string ( )
1641
1639
} else if name == "rustc-codegen-cranelift" {
@@ -1655,7 +1653,7 @@ impl Step for Extended {
1655
1653
prepare ( "cargo" ) ;
1656
1654
prepare ( "rust-analysis" ) ;
1657
1655
prepare ( "rust-std" ) ;
1658
- for tool in & [ "clippy" , "rustfmt" , " rust-analyzer", "rust-docs" , "miri" ] {
1656
+ for tool in & [ "clippy" , "rust-analyzer" , "rust-docs" , "miri" ] {
1659
1657
if built_tools. contains ( tool) {
1660
1658
prepare ( tool) ;
1661
1659
}
@@ -1773,24 +1771,6 @@ impl Step for Extended {
1773
1771
. arg ( etc. join ( "msi/remove-duplicates.xsl" ) )
1774
1772
. run ( builder) ;
1775
1773
}
1776
- if built_tools. contains ( "rustfmt" ) {
1777
- command ( & heat)
1778
- . current_dir ( & exe)
1779
- . arg ( "dir" )
1780
- . arg ( "rustfmt" )
1781
- . args ( heat_flags)
1782
- . arg ( "-cg" )
1783
- . arg ( "RustFmtGroup" )
1784
- . arg ( "-dr" )
1785
- . arg ( "RustFmt" )
1786
- . arg ( "-var" )
1787
- . arg ( "var.RustFmtDir" )
1788
- . arg ( "-out" )
1789
- . arg ( exe. join ( "RustFmtGroup.wxs" ) )
1790
- . arg ( "-t" )
1791
- . arg ( etc. join ( "msi/remove-duplicates.xsl" ) )
1792
- . run ( builder) ;
1793
- }
1794
1774
if built_tools. contains ( "miri" ) {
1795
1775
command ( & heat)
1796
1776
. current_dir ( & exe)
@@ -1862,9 +1842,6 @@ impl Step for Extended {
1862
1842
if built_tools. contains ( "clippy" ) {
1863
1843
cmd. arg ( "-dClippyDir=clippy" ) ;
1864
1844
}
1865
- if built_tools. contains ( "rustfmt" ) {
1866
- cmd. arg ( "-dRustFmtDir=rustfmt" ) ;
1867
- }
1868
1845
if built_tools. contains ( "rust-docs" ) {
1869
1846
cmd. arg ( "-dDocsDir=rust-docs" ) ;
1870
1847
}
@@ -1891,9 +1868,6 @@ impl Step for Extended {
1891
1868
if built_tools. contains ( "clippy" ) {
1892
1869
candle ( "ClippyGroup.wxs" . as_ref ( ) ) ;
1893
1870
}
1894
- if built_tools. contains ( "rustfmt" ) {
1895
- candle ( "RustFmtGroup.wxs" . as_ref ( ) ) ;
1896
- }
1897
1871
if built_tools. contains ( "miri" ) {
1898
1872
candle ( "MiriGroup.wxs" . as_ref ( ) ) ;
1899
1873
}
@@ -1932,9 +1906,6 @@ impl Step for Extended {
1932
1906
if built_tools. contains ( "clippy" ) {
1933
1907
cmd. arg ( "ClippyGroup.wixobj" ) ;
1934
1908
}
1935
- if built_tools. contains ( "rustfmt" ) {
1936
- cmd. arg ( "RustFmtGroup.wixobj" ) ;
1937
- }
1938
1909
if built_tools. contains ( "miri" ) {
1939
1910
cmd. arg ( "MiriGroup.wixobj" ) ;
1940
1911
}
0 commit comments