aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_expand/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/hir_expand/Cargo.toml
parente65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff)
Add version to deps in cargo.toml
Diffstat (limited to 'crates/hir_expand/Cargo.toml')
-rw-r--r--crates/hir_expand/Cargo.toml16
1 files changed, 8 insertions, 8 deletions
diff --git a/crates/hir_expand/Cargo.toml b/crates/hir_expand/Cargo.toml
index 1c4699291..30378f5e0 100644
--- a/crates/hir_expand/Cargo.toml
+++ b/crates/hir_expand/Cargo.toml
@@ -13,11 +13,11 @@ log = "0.4.8"
13either = "1.5.3" 13either = "1.5.3"
14rustc-hash = "1.0.0" 14rustc-hash = "1.0.0"
15 15
16arena = { path = "../arena" } 16arena = { path = "../arena", version = "0.0.0" }
17base_db = { path = "../base_db" } 17base_db = { path = "../base_db", version = "0.0.0" }
18syntax = { path = "../syntax" } 18syntax = { path = "../syntax", version = "0.0.0" }
19parser = { path = "../parser" } 19parser = { path = "../parser", version = "0.0.0" }
20profile = { path = "../profile" } 20profile = { path = "../profile", version = "0.0.0" }
21tt = { path = "../tt" } 21tt = { path = "../tt", version = "0.0.0" }
22mbe = { path = "../mbe" } 22mbe = { path = "../mbe", version = "0.0.0" }
23test_utils = { path = "../test_utils"} 23test_utils = { path = "../test_utils", version = "0.0.0" }