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/ide_db | |
parent | e65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff) |
Add version to deps in cargo.toml
Diffstat (limited to 'crates/ide_db')
-rw-r--r-- | crates/ide_db/Cargo.toml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml index 692fb6415..2230013df 100644 --- a/crates/ide_db/Cargo.toml +++ b/crates/ide_db/Cargo.toml | |||
@@ -19,12 +19,12 @@ rustc-hash = "1.1.0" | |||
19 | once_cell = "1.3.1" | 19 | once_cell = "1.3.1" |
20 | either = "1.5.3" | 20 | either = "1.5.3" |
21 | 21 | ||
22 | stdx = { path = "../stdx" } | 22 | stdx = { path = "../stdx", version = "0.0.0" } |
23 | syntax = { path = "../syntax" } | 23 | syntax = { path = "../syntax", version = "0.0.0" } |
24 | text_edit = { path = "../text_edit" } | 24 | text_edit = { path = "../text_edit", version = "0.0.0" } |
25 | base_db = { path = "../base_db" } | 25 | base_db = { path = "../base_db", version = "0.0.0" } |
26 | profile = { path = "../profile" } | 26 | profile = { path = "../profile", version = "0.0.0" } |
27 | test_utils = { path = "../test_utils" } | 27 | test_utils = { path = "../test_utils", version = "0.0.0" } |
28 | # ide should depend only on the top-level `hir` package. if you need | 28 | # ide should depend only on the top-level `hir` package. if you need |
29 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. | 29 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. |
30 | hir = { path = "../hir" } | 30 | hir = { path = "../hir", version = "0.0.0" } |