diff options
Diffstat (limited to 'crates/ide')
-rw-r--r-- | crates/ide/Cargo.toml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/crates/ide/Cargo.toml b/crates/ide/Cargo.toml index 700944430..688401098 100644 --- a/crates/ide/Cargo.toml +++ b/crates/ide/Cargo.toml | |||
@@ -16,20 +16,20 @@ log = "0.4.8" | |||
16 | rustc-hash = "1.1.0" | 16 | rustc-hash = "1.1.0" |
17 | oorandom = "11.1.2" | 17 | oorandom = "11.1.2" |
18 | 18 | ||
19 | stdx = { path = "../stdx" } | 19 | stdx = { path = "../stdx", version = "0.0.0" } |
20 | syntax = { path = "../syntax" } | 20 | syntax = { path = "../syntax", version = "0.0.0" } |
21 | text_edit = { path = "../text_edit" } | 21 | text_edit = { path = "../text_edit", version = "0.0.0" } |
22 | base_db = { path = "../base_db" } | 22 | base_db = { path = "../base_db", version = "0.0.0" } |
23 | ide_db = { path = "../ide_db" } | 23 | ide_db = { path = "../ide_db", version = "0.0.0" } |
24 | cfg = { path = "../cfg" } | 24 | cfg = { path = "../cfg", version = "0.0.0" } |
25 | profile = { path = "../profile" } | 25 | profile = { path = "../profile", version = "0.0.0" } |
26 | test_utils = { path = "../test_utils" } | 26 | test_utils = { path = "../test_utils", version = "0.0.0" } |
27 | assists = { path = "../assists" } | 27 | assists = { path = "../assists", version = "0.0.0" } |
28 | ssr = { path = "../ssr" } | 28 | ssr = { path = "../ssr", version = "0.0.0" } |
29 | 29 | ||
30 | # ide should depend only on the top-level `hir` package. if you need | 30 | # ide should depend only on the top-level `hir` package. if you need |
31 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. | 31 | # something from some `hir_xxx` subpackage, reexport the API via `hir`. |
32 | hir = { path = "../hir" } | 32 | hir = { path = "../hir", version = "0.0.0" } |
33 | 33 | ||
34 | [dev-dependencies] | 34 | [dev-dependencies] |
35 | expect-test = "0.1" | 35 | expect-test = "0.1" |