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/base_db | |
parent | e65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff) |
Add version to deps in cargo.toml
Diffstat (limited to 'crates/base_db')
-rw-r--r-- | crates/base_db/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/crates/base_db/Cargo.toml b/crates/base_db/Cargo.toml index 7347d7528..c343b22ee 100644 --- a/crates/base_db/Cargo.toml +++ b/crates/base_db/Cargo.toml | |||
@@ -12,10 +12,10 @@ doctest = false | |||
12 | salsa = "0.15.2" | 12 | salsa = "0.15.2" |
13 | rustc-hash = "1.1.0" | 13 | rustc-hash = "1.1.0" |
14 | 14 | ||
15 | syntax = { path = "../syntax" } | 15 | syntax = { path = "../syntax", version = "0.0.0" } |
16 | cfg = { path = "../cfg" } | 16 | cfg = { path = "../cfg", version = "0.0.0" } |
17 | profile = { path = "../profile" } | 17 | profile = { path = "../profile", version = "0.0.0" } |
18 | tt = { path = "../tt" } | 18 | tt = { path = "../tt", version = "0.0.0" } |
19 | test_utils = { path = "../test_utils" } | 19 | test_utils = { path = "../test_utils", version = "0.0.0" } |
20 | vfs = { path = "../vfs" } | 20 | vfs = { path = "../vfs", version = "0.0.0" } |
21 | stdx = { path = "../stdx" } | 21 | stdx = { path = "../stdx", version = "0.0.0" } |