diff options
author | Aaron Wood <[email protected]> | 2020-09-16 20:09:44 +0100 |
---|---|---|
committer | Aaron Wood <[email protected]> | 2020-09-16 20:09:44 +0100 |
commit | 2fbb09a73f1f541f69b8591c3c15b44df889d1bc (patch) | |
tree | 89ed9ec4598634cea5d2c79a2bb425b1c354eb40 /crates/project_model | |
parent | 74c26a785ad8e8ef857b903d3639beb623077933 (diff) |
Correct project_root path for ProjectJson.
It was already the folder containing the rust-project.json file, not the file itself.
Diffstat (limited to 'crates/project_model')
-rw-r--r-- | crates/project_model/src/project_json.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/crates/project_model/src/project_json.rs b/crates/project_model/src/project_json.rs index 545f254aa..1ab1221cb 100644 --- a/crates/project_model/src/project_json.rs +++ b/crates/project_model/src/project_json.rs | |||
@@ -13,7 +13,7 @@ use crate::cfg_flag::CfgFlag; | |||
13 | #[derive(Clone, Debug, Eq, PartialEq)] | 13 | #[derive(Clone, Debug, Eq, PartialEq)] |
14 | pub struct ProjectJson { | 14 | pub struct ProjectJson { |
15 | pub(crate) sysroot_src: Option<AbsPathBuf>, | 15 | pub(crate) sysroot_src: Option<AbsPathBuf>, |
16 | project_root: Option<AbsPathBuf>, | 16 | project_root: AbsPathBuf, |
17 | crates: Vec<Crate>, | 17 | crates: Vec<Crate>, |
18 | } | 18 | } |
19 | 19 | ||
@@ -37,7 +37,7 @@ impl ProjectJson { | |||
37 | pub fn new(base: &AbsPath, data: ProjectJsonData) -> ProjectJson { | 37 | pub fn new(base: &AbsPath, data: ProjectJsonData) -> ProjectJson { |
38 | ProjectJson { | 38 | ProjectJson { |
39 | sysroot_src: data.sysroot_src.map(|it| base.join(it)), | 39 | sysroot_src: data.sysroot_src.map(|it| base.join(it)), |
40 | project_root: base.parent().map(AbsPath::to_path_buf), | 40 | project_root: base.to_path_buf(), |
41 | crates: data | 41 | crates: data |
42 | .crates | 42 | .crates |
43 | .into_iter() | 43 | .into_iter() |
@@ -91,11 +91,8 @@ impl ProjectJson { | |||
91 | pub fn crates(&self) -> impl Iterator<Item = (CrateId, &Crate)> + '_ { | 91 | pub fn crates(&self) -> impl Iterator<Item = (CrateId, &Crate)> + '_ { |
92 | self.crates.iter().enumerate().map(|(idx, krate)| (CrateId(idx as u32), krate)) | 92 | self.crates.iter().enumerate().map(|(idx, krate)| (CrateId(idx as u32), krate)) |
93 | } | 93 | } |
94 | pub fn path(&self) -> Option<&AbsPath> { | 94 | pub fn path(&self) -> &AbsPath { |
95 | match &self.project_root { | 95 | &self.project_root |
96 | Some(p) => Some(p.as_path()), | ||
97 | None => None, | ||
98 | } | ||
99 | } | 96 | } |
100 | } | 97 | } |
101 | 98 | ||