@@ -679,6 +679,7 @@ pub struct Analysis {
679
679
680
680
impl Step for Analysis {
681
681
type Output = Option < GeneratedTarball > ;
682
+ const DEFAULT : bool = true ;
682
683
683
684
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
684
685
let default = should_build_extended_tool ( & run. builder , "analysis" ) ;
@@ -958,6 +959,7 @@ pub struct Cargo {
958
959
959
960
impl Step for Cargo {
960
961
type Output = Option < GeneratedTarball > ;
962
+ const DEFAULT : bool = true ;
961
963
const ONLY_HOSTS : bool = true ;
962
964
963
965
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1014,6 +1016,7 @@ pub struct Rls {
1014
1016
impl Step for Rls {
1015
1017
type Output = Option < GeneratedTarball > ;
1016
1018
const ONLY_HOSTS : bool = true ;
1019
+ const DEFAULT : bool = true ;
1017
1020
1018
1021
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
1019
1022
let default = should_build_extended_tool ( & run. builder , "rls" ) ;
@@ -1059,6 +1062,7 @@ pub struct RustAnalyzer {
1059
1062
1060
1063
impl Step for RustAnalyzer {
1061
1064
type Output = Option < GeneratedTarball > ;
1065
+ const DEFAULT : bool = true ;
1062
1066
const ONLY_HOSTS : bool = true ;
1063
1067
1064
1068
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1114,6 +1118,7 @@ pub struct Clippy {
1114
1118
1115
1119
impl Step for Clippy {
1116
1120
type Output = Option < GeneratedTarball > ;
1121
+ const DEFAULT : bool = true ;
1117
1122
const ONLY_HOSTS : bool = true ;
1118
1123
1119
1124
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1164,6 +1169,7 @@ pub struct Miri {
1164
1169
1165
1170
impl Step for Miri {
1166
1171
type Output = Option < GeneratedTarball > ;
1172
+ const DEFAULT : bool = true ;
1167
1173
const ONLY_HOSTS : bool = true ;
1168
1174
1169
1175
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1223,6 +1229,7 @@ pub struct Rustfmt {
1223
1229
1224
1230
impl Step for Rustfmt {
1225
1231
type Output = Option < GeneratedTarball > ;
1232
+ const DEFAULT : bool = true ;
1226
1233
const ONLY_HOSTS : bool = true ;
1227
1234
1228
1235
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1276,6 +1283,7 @@ pub struct RustDemangler {
1276
1283
1277
1284
impl Step for RustDemangler {
1278
1285
type Output = Option < GeneratedTarball > ;
1286
+ const DEFAULT : bool = true ;
1279
1287
const ONLY_HOSTS : bool = true ;
1280
1288
1281
1289
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
@@ -1975,6 +1983,7 @@ pub struct LlvmTools {
1975
1983
impl Step for LlvmTools {
1976
1984
type Output = Option < GeneratedTarball > ;
1977
1985
const ONLY_HOSTS : bool = true ;
1986
+ const DEFAULT : bool = true ;
1978
1987
1979
1988
fn should_run ( run : ShouldRun < ' _ > ) -> ShouldRun < ' _ > {
1980
1989
let default = should_build_extended_tool ( & run. builder , "llvm-tools" ) ;
0 commit comments