File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ impl Default for CargoConfig {
64
64
fn default ( ) -> Self {
65
65
CargoConfig {
66
66
no_default_features : false ,
67
- all_features : true ,
67
+ all_features : false ,
68
68
features : Vec :: new ( ) ,
69
69
load_out_dirs_from_check : false ,
70
70
target : None ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ impl Default for Config {
122
122
check : Some ( FlycheckConfig :: CargoCommand {
123
123
command : "check" . to_string ( ) ,
124
124
all_targets : true ,
125
- all_features : true ,
125
+ all_features : false ,
126
126
extra_args : Vec :: new ( ) ,
127
127
} ) ,
128
128
Original file line number Diff line number Diff line change 238
238
},
239
239
"rust-analyzer.cargo.allFeatures" : {
240
240
"type" : " boolean" ,
241
- "default" : true ,
241
+ "default" : false ,
242
242
"description" : " Activate all available features"
243
243
},
244
244
"rust-analyzer.cargo.features" : {
319
319
},
320
320
"rust-analyzer.checkOnSave.allFeatures" : {
321
321
"type" : " boolean" ,
322
- "default" : true ,
322
+ "default" : false ,
323
323
"markdownDescription" : " Check with all features (will be passed as `--all-features`)"
324
324
},
325
325
"rust-analyzer.inlayHints.enable" : {
You can’t perform that action at this time.
0 commit comments