diff options
Diffstat (limited to 'crates/ra_project_model/src')
-rw-r--r-- | crates/ra_project_model/src/cargo_workspace.rs | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/crates/ra_project_model/src/cargo_workspace.rs b/crates/ra_project_model/src/cargo_workspace.rs index 47a1d393d..361fc8eea 100644 --- a/crates/ra_project_model/src/cargo_workspace.rs +++ b/crates/ra_project_model/src/cargo_workspace.rs | |||
@@ -45,7 +45,7 @@ impl ops::Index<Target> for CargoWorkspace { | |||
45 | } | 45 | } |
46 | } | 46 | } |
47 | 47 | ||
48 | #[derive(Clone, Debug, PartialEq, Eq)] | 48 | #[derive(Default, Clone, Debug, PartialEq, Eq)] |
49 | pub struct CargoConfig { | 49 | pub struct CargoConfig { |
50 | /// Do not activate the `default` feature. | 50 | /// Do not activate the `default` feature. |
51 | pub no_default_features: bool, | 51 | pub no_default_features: bool, |
@@ -64,18 +64,6 @@ pub struct CargoConfig { | |||
64 | pub target: Option<String>, | 64 | pub target: Option<String>, |
65 | } | 65 | } |
66 | 66 | ||
67 | impl Default for CargoConfig { | ||
68 | fn default() -> Self { | ||
69 | CargoConfig { | ||
70 | no_default_features: false, | ||
71 | all_features: false, | ||
72 | features: Vec::new(), | ||
73 | load_out_dirs_from_check: false, | ||
74 | target: None, | ||
75 | } | ||
76 | } | ||
77 | } | ||
78 | |||
79 | pub type Package = Idx<PackageData>; | 67 | pub type Package = Idx<PackageData>; |
80 | 68 | ||
81 | pub type Target = Idx<TargetData>; | 69 | pub type Target = Idx<TargetData>; |