aboutsummaryrefslogtreecommitdiff
path: root/crates/assists/Cargo.toml
diff options
context:
space:
mode:
authorPavan Kumar Sunkara <[email protected]>2020-08-24 09:25:19 +0100
committerPavan Kumar Sunkara <[email protected]>2020-08-24 10:10:41 +0100
commita8fa5cd42e3cfa131121a46b289ee919e495316e (patch)
treed72e341c36d588cc44832ed43f769ef345274c54 /crates/assists/Cargo.toml
parente65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff)
Add version to deps in cargo.toml
Diffstat (limited to 'crates/assists/Cargo.toml')
-rw-r--r--crates/assists/Cargo.toml16
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"
13itertools = "0.9.0" 13itertools = "0.9.0"
14either = "1.5.3" 14either = "1.5.3"
15 15
16stdx = { path = "../stdx" } 16stdx = { path = "../stdx", version = "0.0.0" }
17syntax = { path = "../syntax" } 17syntax = { path = "../syntax", version = "0.0.0" }
18text_edit = { path = "../text_edit" } 18text_edit = { path = "../text_edit", version = "0.0.0" }
19profile = { path = "../profile" } 19profile = { path = "../profile", version = "0.0.0" }
20base_db = { path = "../base_db" } 20base_db = { path = "../base_db", version = "0.0.0" }
21ide_db = { path = "../ide_db" } 21ide_db = { path = "../ide_db", version = "0.0.0" }
22hir = { path = "../hir" } 22hir = { path = "../hir", version = "0.0.0" }
23test_utils = { path = "../test_utils" } 23test_utils = { path = "../test_utils", version = "0.0.0" }