diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-04-06 13:50:25 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-06 13:50:25 +0100 |
commit | 4414071074759dee637e0ce968805de63e60da7b (patch) | |
tree | 90ee633afbfdb4c23573bc20e2f0a907609a366d /crates/project_model | |
parent | 002e72a28de3df818992442ad49bb60d3d0b1d0b (diff) | |
parent | ad02bfe58fd52293d9ae4a049f98f475df9d3abb (diff) |
Merge #8355
8355: internal: do not drop errors from cargo metadata/check r=matklad a=matklad
Work towards #3155
Co-authored-by: Aleksey Kladov <[email protected]>
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 | } |