diff options
author | Pavan Kumar Sunkara <[email protected]> | 2020-08-24 09:25:19 +0100 |
---|---|---|
committer | Pavan Kumar Sunkara <[email protected]> | 2020-08-24 10:10:41 +0100 |
commit | a8fa5cd42e3cfa131121a46b289ee919e495316e (patch) | |
tree | d72e341c36d588cc44832ed43f769ef345274c54 /crates/assists | |
parent | e65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff) |
Add version to deps in cargo.toml
Diffstat (limited to 'crates/assists')
-rw-r--r-- | crates/assists/Cargo.toml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/crates/assists/Cargo.toml b/crates/assists/Cargo.toml index a560a35c7..aab901684 100644 --- a/crates/assists/Cargo.toml +++ b/crates/assists/Cargo.toml | |||
@@ -13,11 +13,11 @@ rustc-hash = "1.1.0" | |||
13 | itertools = "0.9.0" | 13 | itertools = "0.9.0" |
14 | either = "1.5.3" | 14 | either = "1.5.3" |
15 | 15 | ||
16 | stdx = { path = "../stdx" } | 16 | stdx = { path = "../stdx", version = "0.0.0" } |
17 | syntax = { path = "../syntax" } | 17 | syntax = { path = "../syntax", version = "0.0.0" } |
18 | text_edit = { path = "../text_edit" } | 18 | text_edit = { path = "../text_edit", version = "0.0.0" } |
19 | profile = { path = "../profile" } | 19 | profile = { path = "../profile", version = "0.0.0" } |
20 | base_db = { path = "../base_db" } | 20 | base_db = { path = "../base_db", version = "0.0.0" } |
21 | ide_db = { path = "../ide_db" } | 21 | ide_db = { path = "../ide_db", version = "0.0.0" } |
22 | hir = { path = "../hir" } | 22 | hir = { path = "../hir", version = "0.0.0" } |
23 | test_utils = { path = "../test_utils" } | 23 | test_utils = { path = "../test_utils", version = "0.0.0" } |