diff options
author | Aleksey Kladov <[email protected]> | 2018-12-08 22:05:49 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-12-09 10:33:16 +0000 |
commit | 74fe581061be5175835efda69ee1fa3817716a59 (patch) | |
tree | 05f062ffbdc1d81229bae6abbd9b015ea28f9793 /crates/ra_db/src | |
parent | 961cae7e53a05625f3e010076673ca083479b481 (diff) |
return dependencies with names
Diffstat (limited to 'crates/ra_db/src')
-rw-r--r-- | crates/ra_db/src/input.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs index 44c5bac93..ac144b991 100644 --- a/crates/ra_db/src/input.rs +++ b/crates/ra_db/src/input.rs | |||
@@ -38,8 +38,8 @@ impl CrateData { | |||
38 | 38 | ||
39 | #[derive(Debug, Clone, PartialEq, Eq)] | 39 | #[derive(Debug, Clone, PartialEq, Eq)] |
40 | pub struct Dependency { | 40 | pub struct Dependency { |
41 | crate_id: CrateId, | 41 | pub crate_id: CrateId, |
42 | name: SmolStr, | 42 | pub name: SmolStr, |
43 | } | 43 | } |
44 | 44 | ||
45 | impl Dependency { | 45 | impl Dependency { |