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 | |
parent | e65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff) |
Add version to deps in cargo.toml
-rw-r--r-- | crates/assists/Cargo.toml | 16 | ||||
-rw-r--r-- | crates/base_db/Cargo.toml | 14 | ||||
-rw-r--r-- | crates/cfg/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/flycheck/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/hir/Cargo.toml | 14 | ||||
-rw-r--r-- | crates/hir_def/Cargo.toml | 20 | ||||
-rw-r--r-- | crates/hir_expand/Cargo.toml | 16 | ||||
-rw-r--r-- | crates/hir_ty/Cargo.toml | 16 | ||||
-rw-r--r-- | crates/ide/Cargo.toml | 22 | ||||
-rw-r--r-- | crates/ide_db/Cargo.toml | 14 | ||||
-rw-r--r-- | crates/mbe/Cargo.toml | 6 | ||||
-rw-r--r-- | crates/proc_macro_api/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/proc_macro_srv/Cargo.toml | 8 | ||||
-rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/project_model/Cargo.toml | 14 | ||||
-rw-r--r-- | crates/rust-analyzer/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/ssr/Cargo.toml | 12 | ||||
-rw-r--r-- | crates/syntax/Cargo.toml | 6 | ||||
-rw-r--r-- | crates/test_utils/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/tt/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/vfs-notify/Cargo.toml | 4 | ||||
-rw-r--r-- | crates/vfs/Cargo.toml | 2 |
22 files changed, 99 insertions, 98 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" | |||
13 | itertools = "0.9.0" | 13 | itertools = "0.9.0" |
14 | either = "1.5.3" | 14 | either = "1.5.3" |
15 | 15 | ||
16 | stdx = { path = "../stdx" } | 16 | stdx = { path = "../stdx", version = "0.0.0" } |
17 | syntax = { path = "../syntax" } | 17 | syntax = { path = "../syntax", version = "0.0.0" } |
18 | text_edit = { path = "../text_edit" } | 18 | text_edit = { path = "../text_edit", version = "0.0.0" } |
19 | profile = { path = "../profile" } | 19 | profile = { path = "../profile", version = "0.0.0" } |
20 | base_db = { path = "../base_db" } | 20 | base_db = { path = "../base_db", version = "0.0.0" } |
21 | ide_db = { path = "../ide_db" } | 21 | ide_db = { path = "../ide_db", version = "0.0.0" } |
22 | hir = { path = "../hir" } | 22 | hir = { path = "../hir", version = "0.0.0" } |
23 | test_utils = { path = "../test_utils" } | 23 | test_utils = { path = "../test_utils", version = "0.0.0" } |
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" } |
diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml index d2ea551d1..573a69a1c 100644 --- a/crates/cfg/Cargo.toml +++ b/crates/cfg/Cargo.toml | |||
@@ -11,7 +11,7 @@ doctest = false | |||
11 | [dependencies] | 11 | [dependencies] |
12 | rustc-hash = "1.1.0" | 12 | rustc-hash = "1.1.0" |
13 | 13 | ||
14 | tt = { path = "../tt" } | 14 | tt = { path = "../tt", version = "0.0.0" } |
15 | 15 | ||
16 | [dev-dependencies] | 16 | [dev-dependencies] |
17 | mbe = { path = "../mbe" } | 17 | mbe = { path = "../mbe" } |
diff --git a/crates/flycheck/Cargo.toml b/crates/flycheck/Cargo.toml index 262a66e4e..32f026727 100644 --- a/crates/flycheck/Cargo.toml +++ b/crates/flycheck/Cargo.toml | |||
@@ -15,4 +15,4 @@ cargo_metadata = "0.11.1" | |||
15 | serde_json = "1.0.48" | 15 | serde_json = "1.0.48" |
16 | jod-thread = "0.1.1" | 16 | jod-thread = "0.1.1" |
17 | 17 | ||
18 | toolchain = { path = "../toolchain" } | 18 | toolchain = { path = "../toolchain", version = "0.0.0" } |
diff --git a/crates/hir/Cargo.toml b/crates/hir/Cargo.toml index dbb2986b6..4b5221f60 100644 --- a/crates/hir/Cargo.toml +++ b/crates/hir/Cargo.toml | |||
@@ -15,10 +15,10 @@ either = "1.5.3" | |||
15 | arrayvec = "0.5.1" | 15 | arrayvec = "0.5.1" |
16 | itertools = "0.9.0" | 16 | itertools = "0.9.0" |
17 | 17 | ||
18 | stdx = { path = "../stdx" } | 18 | stdx = { path = "../stdx", version = "0.0.0" } |
19 | syntax = { path = "../syntax" } | 19 | syntax = { path = "../syntax", version = "0.0.0" } |
20 | base_db = { path = "../base_db" } | 20 | base_db = { path = "../base_db", version = "0.0.0" } |
21 | profile = { path = "../profile" } | 21 | profile = { path = "../profile", version = "0.0.0" } |
22 | hir_expand = { path = "../hir_expand" } | 22 | hir_expand = { path = "../hir_expand", version = "0.0.0" } |
23 | hir_def = { path = "../hir_def" } | 23 | hir_def = { path = "../hir_def", version = "0.0.0" } |
24 | hir_ty = { path = "../hir_ty" } | 24 | hir_ty = { path = "../hir_ty", version = "0.0.0" } |
diff --git a/crates/hir_def/Cargo.toml b/crates/hir_def/Cargo.toml index 57745322f..cba5fbb27 100644 --- a/crates/hir_def/Cargo.toml +++ b/crates/hir_def/Cargo.toml | |||
@@ -20,16 +20,16 @@ itertools = "0.9.0" | |||
20 | indexmap = "1.4.0" | 20 | indexmap = "1.4.0" |
21 | smallvec = "1.4.0" | 21 | smallvec = "1.4.0" |
22 | 22 | ||
23 | stdx = { path = "../stdx" } | 23 | stdx = { path = "../stdx", version = "0.0.0" } |
24 | arena = { path = "../arena" } | 24 | arena = { path = "../arena", version = "0.0.0" } |
25 | base_db = { path = "../base_db" } | 25 | base_db = { path = "../base_db", version = "0.0.0" } |
26 | syntax = { path = "../syntax" } | 26 | syntax = { path = "../syntax", version = "0.0.0" } |
27 | profile = { path = "../profile" } | 27 | profile = { path = "../profile", version = "0.0.0" } |
28 | hir_expand = { path = "../hir_expand" } | 28 | hir_expand = { path = "../hir_expand", version = "0.0.0" } |
29 | test_utils = { path = "../test_utils" } | 29 | test_utils = { path = "../test_utils", version = "0.0.0" } |
30 | mbe = { path = "../mbe" } | 30 | mbe = { path = "../mbe", version = "0.0.0" } |
31 | cfg = { path = "../cfg" } | 31 | cfg = { path = "../cfg", version = "0.0.0" } |
32 | tt = { path = "../tt" } | 32 | tt = { path = "../tt", version = "0.0.0" } |
33 | 33 | ||
34 | [dev-dependencies] | 34 | [dev-dependencies] |
35 | expect-test = "0.1" | 35 | expect-test = "0.1" |
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" | |||
13 | either = "1.5.3" | 13 | either = "1.5.3" |
14 | rustc-hash = "1.0.0" | 14 | rustc-hash = "1.0.0" |
15 | 15 | ||
16 | arena = { path = "../arena" } | 16 | arena = { path = "../arena", version = "0.0.0" } |
17 | base_db = { path = "../base_db" } | 17 | base_db = { path = "../base_db", version = "0.0.0" } |
18 | syntax = { path = "../syntax" } | 18 | syntax = { path = "../syntax", version = "0.0.0" } |
19 | parser = { path = "../parser" } | 19 | parser = { path = "../parser", version = "0.0.0" } |
20 | profile = { path = "../profile" } | 20 | profile = { path = "../profile", version = "0.0.0" } |
21 | tt = { path = "../tt" } | 21 | tt = { path = "../tt", version = "0.0.0" } |
22 | mbe = { path = "../mbe" } | 22 | mbe = { path = "../mbe", version = "0.0.0" } |
23 | test_utils = { path = "../test_utils"} | 23 | test_utils = { path = "../test_utils", version = "0.0.0" } |
diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index 06da0d0ec..701fc0f9d 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml | |||
@@ -20,14 +20,14 @@ chalk-solve = { version = "0.23.0" } | |||
20 | chalk-ir = { version = "0.23.0" } | 20 | chalk-ir = { version = "0.23.0" } |
21 | chalk-recursive = { version = "0.23.0" } | 21 | chalk-recursive = { version = "0.23.0" } |
22 | 22 | ||
23 | stdx = { path = "../stdx" } | 23 | stdx = { path = "../stdx", version = "0.0.0" } |
24 | hir_def = { path = "../hir_def" } | 24 | hir_def = { path = "../hir_def", version = "0.0.0" } |
25 | hir_expand = { path = "../hir_expand" } | 25 | hir_expand = { path = "../hir_expand", version = "0.0.0" } |
26 | arena = { path = "../arena" } | 26 | arena = { path = "../arena", version = "0.0.0" } |
27 | base_db = { path = "../base_db" } | 27 | base_db = { path = "../base_db", version = "0.0.0" } |
28 | profile = { path = "../profile" } | 28 | profile = { path = "../profile", version = "0.0.0" } |
29 | syntax = { path = "../syntax" } | 29 | syntax = { path = "../syntax", version = "0.0.0" } |
30 | test_utils = { path = "../test_utils" } | 30 | test_utils = { path = "../test_utils", version = "0.0.0" } |
31 | 31 | ||
32 | [dev-dependencies] | 32 | [dev-dependencies] |
33 | expect-test = "0.1" | 33 | expect-test = "0.1" |
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" |
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" } |
diff --git a/crates/mbe/Cargo.toml b/crates/mbe/Cargo.toml index 1aba8b7c4..ecd917792 100644 --- a/crates/mbe/Cargo.toml +++ b/crates/mbe/Cargo.toml | |||
@@ -13,9 +13,9 @@ rustc-hash = "1.1.0" | |||
13 | smallvec = "1.2.0" | 13 | smallvec = "1.2.0" |
14 | log = "0.4.8" | 14 | log = "0.4.8" |
15 | 15 | ||
16 | syntax = { path = "../syntax" } | 16 | syntax = { path = "../syntax", version = "0.0.0" } |
17 | parser = { path = "../parser" } | 17 | parser = { path = "../parser", version = "0.0.0" } |
18 | tt = { path = "../tt" } | 18 | tt = { path = "../tt", version = "0.0.0" } |
19 | 19 | ||
20 | [dev-dependencies] | 20 | [dev-dependencies] |
21 | test_utils = { path = "../test_utils" } | 21 | test_utils = { path = "../test_utils" } |
diff --git a/crates/proc_macro_api/Cargo.toml b/crates/proc_macro_api/Cargo.toml index a3a4c1103..cc6019c91 100644 --- a/crates/proc_macro_api/Cargo.toml +++ b/crates/proc_macro_api/Cargo.toml | |||
@@ -15,4 +15,4 @@ log = "0.4.8" | |||
15 | crossbeam-channel = "0.4.0" | 15 | crossbeam-channel = "0.4.0" |
16 | jod-thread = "0.1.1" | 16 | jod-thread = "0.1.1" |
17 | 17 | ||
18 | tt = { path = "../tt" } | 18 | tt = { path = "../tt", version = "0.0.0" } |
diff --git a/crates/proc_macro_srv/Cargo.toml b/crates/proc_macro_srv/Cargo.toml index a468b5560..700d2c0f7 100644 --- a/crates/proc_macro_srv/Cargo.toml +++ b/crates/proc_macro_srv/Cargo.toml | |||
@@ -13,10 +13,10 @@ goblin = "0.2.1" | |||
13 | libloading = "0.6.0" | 13 | libloading = "0.6.0" |
14 | memmap = "0.7" | 14 | memmap = "0.7" |
15 | 15 | ||
16 | tt = { path = "../tt" } | 16 | tt = { path = "../tt", version = "0.0.0" } |
17 | mbe = { path = "../mbe" } | 17 | mbe = { path = "../mbe", version = "0.0.0" } |
18 | proc_macro_api = { path = "../proc_macro_api" } | 18 | proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" } |
19 | test_utils = { path = "../test_utils" } | 19 | test_utils = { path = "../test_utils", version = "0.0.0" } |
20 | 20 | ||
21 | [dev-dependencies] | 21 | [dev-dependencies] |
22 | cargo_metadata = "0.11.1" | 22 | cargo_metadata = "0.11.1" |
diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index e271e3a56..17769fcd3 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml | |||
@@ -14,7 +14,7 @@ cfg-if = "0.1.10" | |||
14 | libc = "0.2.73" | 14 | libc = "0.2.73" |
15 | backtrace = { version = "0.3.44", optional = true } | 15 | backtrace = { version = "0.3.44", optional = true } |
16 | 16 | ||
17 | arena = { path = "../arena" } | 17 | arena = { path = "../arena", version = "0.0.0" } |
18 | 18 | ||
19 | [target.'cfg(target_os = "linux")'.dependencies] | 19 | [target.'cfg(target_os = "linux")'.dependencies] |
20 | perf-event = "0.4" | 20 | perf-event = "0.4" |
diff --git a/crates/project_model/Cargo.toml b/crates/project_model/Cargo.toml index 386f72f41..53db7d3b9 100644 --- a/crates/project_model/Cargo.toml +++ b/crates/project_model/Cargo.toml | |||
@@ -16,10 +16,10 @@ serde = { version = "1.0.106", features = ["derive"] } | |||
16 | serde_json = "1.0.48" | 16 | serde_json = "1.0.48" |
17 | anyhow = "1.0.26" | 17 | anyhow = "1.0.26" |
18 | 18 | ||
19 | arena = { path = "../arena" } | 19 | arena = { path = "../arena", version = "0.0.0" } |
20 | cfg = { path = "../cfg" } | 20 | cfg = { path = "../cfg", version = "0.0.0" } |
21 | base_db = { path = "../base_db" } | 21 | base_db = { path = "../base_db", version = "0.0.0" } |
22 | toolchain = { path = "../toolchain" } | 22 | toolchain = { path = "../toolchain", version = "0.0.0" } |
23 | proc_macro_api = { path = "../proc_macro_api" } | 23 | proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" } |
24 | paths = { path = "../paths" } | 24 | paths = { path = "../paths", version = "0.0.0" } |
25 | stdx = { path = "../stdx" } | 25 | stdx = { path = "../stdx", version = "0.0.0" } |
diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 068a961dc..7e280b1f7 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml | |||
@@ -5,6 +5,7 @@ license = "MIT OR Apache-2.0" | |||
5 | authors = ["rust-analyzer developers"] | 5 | authors = ["rust-analyzer developers"] |
6 | autobins = false | 6 | autobins = false |
7 | edition = "2018" | 7 | edition = "2018" |
8 | publish = false | ||
8 | 9 | ||
9 | [lib] | 10 | [lib] |
10 | doctest = false | 11 | doctest = false |
diff --git a/crates/ssr/Cargo.toml b/crates/ssr/Cargo.toml index 22b6af0fa..6f0f53d70 100644 --- a/crates/ssr/Cargo.toml +++ b/crates/ssr/Cargo.toml | |||
@@ -14,12 +14,12 @@ doctest = false | |||
14 | rustc-hash = "1.1.0" | 14 | rustc-hash = "1.1.0" |
15 | itertools = "0.9.0" | 15 | itertools = "0.9.0" |
16 | 16 | ||
17 | text_edit = { path = "../text_edit" } | 17 | text_edit = { path = "../text_edit", version = "0.0.0" } |
18 | syntax = { path = "../syntax" } | 18 | syntax = { path = "../syntax", version = "0.0.0" } |
19 | base_db = { path = "../base_db" } | 19 | base_db = { path = "../base_db", version = "0.0.0" } |
20 | ide_db = { path = "../ide_db" } | 20 | ide_db = { path = "../ide_db", version = "0.0.0" } |
21 | hir = { path = "../hir" } | 21 | hir = { path = "../hir", version = "0.0.0" } |
22 | test_utils = { path = "../test_utils" } | 22 | test_utils = { path = "../test_utils", version = "0.0.0" } |
23 | 23 | ||
24 | [dev-dependencies] | 24 | [dev-dependencies] |
25 | expect-test = "0.1" | 25 | expect-test = "0.1" |
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index 6818f3ad8..2c1bdb295 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml | |||
@@ -23,9 +23,9 @@ once_cell = "1.3.1" | |||
23 | smol_str = { version = "0.1.15", features = ["serde"] } | 23 | smol_str = { version = "0.1.15", features = ["serde"] } |
24 | serde = { version = "1.0.106", features = ["derive"] } | 24 | serde = { version = "1.0.106", features = ["derive"] } |
25 | 25 | ||
26 | stdx = { path = "../stdx" } | 26 | stdx = { path = "../stdx", version = "0.0.0" } |
27 | text_edit = { path = "../text_edit" } | 27 | text_edit = { path = "../text_edit", version = "0.0.0" } |
28 | parser = { path = "../parser" } | 28 | parser = { path = "../parser", version = "0.0.0" } |
29 | 29 | ||
30 | [dev-dependencies] | 30 | [dev-dependencies] |
31 | walkdir = "2.3.1" | 31 | walkdir = "2.3.1" |
diff --git a/crates/test_utils/Cargo.toml b/crates/test_utils/Cargo.toml index 45e5fb97f..d60b88add 100644 --- a/crates/test_utils/Cargo.toml +++ b/crates/test_utils/Cargo.toml | |||
@@ -15,4 +15,4 @@ text-size = "1.0.0" | |||
15 | serde_json = "1.0.48" | 15 | serde_json = "1.0.48" |
16 | rustc-hash = "1.1.0" | 16 | rustc-hash = "1.1.0" |
17 | 17 | ||
18 | stdx = { path = "../stdx" } | 18 | stdx = { path = "../stdx", version = "0.0.0" } |
diff --git a/crates/tt/Cargo.toml b/crates/tt/Cargo.toml index dfcdcf03e..bf7e3f21f 100644 --- a/crates/tt/Cargo.toml +++ b/crates/tt/Cargo.toml | |||
@@ -13,4 +13,4 @@ doctest = false | |||
13 | # to reduce number of compilations | 13 | # to reduce number of compilations |
14 | smol_str = { version = "0.1.15", features = ["serde"] } | 14 | smol_str = { version = "0.1.15", features = ["serde"] } |
15 | 15 | ||
16 | stdx = { path = "../stdx" } | 16 | stdx = { path = "../stdx", version = "0.0.0" } |
diff --git a/crates/vfs-notify/Cargo.toml b/crates/vfs-notify/Cargo.toml index c1e53f4b1..304c9883f 100644 --- a/crates/vfs-notify/Cargo.toml +++ b/crates/vfs-notify/Cargo.toml | |||
@@ -16,5 +16,5 @@ walkdir = "2.3.1" | |||
16 | crossbeam-channel = "0.4.0" | 16 | crossbeam-channel = "0.4.0" |
17 | notify = "5.0.0-pre.3" | 17 | notify = "5.0.0-pre.3" |
18 | 18 | ||
19 | vfs = { path = "../vfs" } | 19 | vfs = { path = "../vfs", version = "0.0.0" } |
20 | paths = { path = "../paths" } | 20 | paths = { path = "../paths", version = "0.0.0" } |
diff --git a/crates/vfs/Cargo.toml b/crates/vfs/Cargo.toml index 9ae8f19b6..a88d69a5e 100644 --- a/crates/vfs/Cargo.toml +++ b/crates/vfs/Cargo.toml | |||
@@ -12,4 +12,4 @@ doctest = false | |||
12 | rustc-hash = "1.0" | 12 | rustc-hash = "1.0" |
13 | fst = "0.4" | 13 | fst = "0.4" |
14 | 14 | ||
15 | paths = { path = "../paths" } | 15 | paths = { path = "../paths", version = "0.0.0" } |