diff options
author | Aleksey Kladov <[email protected]> | 2021-04-05 20:30:19 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-04-06 10:33:19 +0100 |
commit | aaa8c208b12e3ddb1b4a7fd3d843182ae12cdae5 (patch) | |
tree | a5833c960096a22e38beab5dda78cd4ddd3f736b /crates/project_model | |
parent | 047b5313013383fc4fafaef6d6d8d6a64549e3cb (diff) |
internal: do not drop errors from cargo metadata/check
Work towards #3155
Diffstat (limited to 'crates/project_model')
-rw-r--r-- | crates/project_model/src/build_data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/project_model/src/build_data.rs b/crates/project_model/src/build_data.rs index f7050be4e..c2c87b207 100644 --- a/crates/project_model/src/build_data.rs +++ b/crates/project_model/src/build_data.rs | |||
@@ -52,7 +52,7 @@ pub struct BuildDataCollector { | |||
52 | configs: FxHashMap<AbsPathBuf, BuildDataConfig>, | 52 | configs: FxHashMap<AbsPathBuf, BuildDataConfig>, |
53 | } | 53 | } |
54 | 54 | ||
55 | #[derive(Debug, Default, PartialEq, Eq)] | 55 | #[derive(Debug, Default, PartialEq, Eq, Clone)] |
56 | pub struct BuildDataResult { | 56 | pub struct BuildDataResult { |
57 | data: FxHashMap<AbsPathBuf, BuildDataMap>, | 57 | data: FxHashMap<AbsPathBuf, BuildDataMap>, |
58 | } | 58 | } |