diff options
author | Laurențiu Nicola <[email protected]> | 2020-06-02 10:24:33 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2020-06-02 17:14:34 +0100 |
commit | 7a66d9989713475a10eb20b8c772287b435fecd3 (patch) | |
tree | 3a7b50b1b62dabd5c9c71da51b4549151c62c046 /crates | |
parent | 21132a7a748a70351f5d1ae6d8c51a3a0065013e (diff) |
Disable rust-analyzer.{cargo,checkOnSave}.allFeatures by default
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_project_model/src/cargo_workspace.rs | 2 | ||||
-rw-r--r-- | crates/rust-analyzer/src/config.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_project_model/src/cargo_workspace.rs b/crates/ra_project_model/src/cargo_workspace.rs index a306ce95f..4b7444039 100644 --- a/crates/ra_project_model/src/cargo_workspace.rs +++ b/crates/ra_project_model/src/cargo_workspace.rs | |||
@@ -64,7 +64,7 @@ impl Default for CargoConfig { | |||
64 | fn default() -> Self { | 64 | fn default() -> Self { |
65 | CargoConfig { | 65 | CargoConfig { |
66 | no_default_features: false, | 66 | no_default_features: false, |
67 | all_features: true, | 67 | all_features: false, |
68 | features: Vec::new(), | 68 | features: Vec::new(), |
69 | load_out_dirs_from_check: false, | 69 | load_out_dirs_from_check: false, |
70 | target: None, | 70 | target: None, |
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs index c0f7c2c0c..9c6e369d2 100644 --- a/crates/rust-analyzer/src/config.rs +++ b/crates/rust-analyzer/src/config.rs | |||
@@ -122,7 +122,7 @@ impl Default for Config { | |||
122 | check: Some(FlycheckConfig::CargoCommand { | 122 | check: Some(FlycheckConfig::CargoCommand { |
123 | command: "check".to_string(), | 123 | command: "check".to_string(), |
124 | all_targets: true, | 124 | all_targets: true, |
125 | all_features: true, | 125 | all_features: false, |
126 | extra_args: Vec::new(), | 126 | extra_args: Vec::new(), |
127 | }), | 127 | }), |
128 | 128 | ||