aboutsummaryrefslogtreecommitdiff
path: root/crates
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
parente65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff)
Add version to deps in cargo.toml
Diffstat (limited to 'crates')
-rw-r--r--crates/assists/Cargo.toml16
-rw-r--r--crates/base_db/Cargo.toml14
-rw-r--r--crates/cfg/Cargo.toml2
-rw-r--r--crates/flycheck/Cargo.toml2
-rw-r--r--crates/hir/Cargo.toml14
-rw-r--r--crates/hir_def/Cargo.toml20
-rw-r--r--crates/hir_expand/Cargo.toml16
-rw-r--r--crates/hir_ty/Cargo.toml16
-rw-r--r--crates/ide/Cargo.toml22
-rw-r--r--crates/ide_db/Cargo.toml14
-rw-r--r--crates/mbe/Cargo.toml6
-rw-r--r--crates/proc_macro_api/Cargo.toml2
-rw-r--r--crates/proc_macro_srv/Cargo.toml8
-rw-r--r--crates/profile/Cargo.toml2
-rw-r--r--crates/project_model/Cargo.toml14
-rw-r--r--crates/rust-analyzer/Cargo.toml1
-rw-r--r--crates/ssr/Cargo.toml12
-rw-r--r--crates/syntax/Cargo.toml6
-rw-r--r--crates/test_utils/Cargo.toml2
-rw-r--r--crates/tt/Cargo.toml2
-rw-r--r--crates/vfs-notify/Cargo.toml4
-rw-r--r--crates/vfs/Cargo.toml2
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"
13itertools = "0.9.0" 13itertools = "0.9.0"
14either = "1.5.3" 14either = "1.5.3"
15 15
16stdx = { path = "../stdx" } 16stdx = { path = "../stdx", version = "0.0.0" }
17syntax = { path = "../syntax" } 17syntax = { path = "../syntax", version = "0.0.0" }
18text_edit = { path = "../text_edit" } 18text_edit = { path = "../text_edit", version = "0.0.0" }
19profile = { path = "../profile" } 19profile = { path = "../profile", version = "0.0.0" }
20base_db = { path = "../base_db" } 20base_db = { path = "../base_db", version = "0.0.0" }
21ide_db = { path = "../ide_db" } 21ide_db = { path = "../ide_db", version = "0.0.0" }
22hir = { path = "../hir" } 22hir = { path = "../hir", version = "0.0.0" }
23test_utils = { path = "../test_utils" } 23test_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
12salsa = "0.15.2" 12salsa = "0.15.2"
13rustc-hash = "1.1.0" 13rustc-hash = "1.1.0"
14 14
15syntax = { path = "../syntax" } 15syntax = { path = "../syntax", version = "0.0.0" }
16cfg = { path = "../cfg" } 16cfg = { path = "../cfg", version = "0.0.0" }
17profile = { path = "../profile" } 17profile = { path = "../profile", version = "0.0.0" }
18tt = { path = "../tt" } 18tt = { path = "../tt", version = "0.0.0" }
19test_utils = { path = "../test_utils" } 19test_utils = { path = "../test_utils", version = "0.0.0" }
20vfs = { path = "../vfs" } 20vfs = { path = "../vfs", version = "0.0.0" }
21stdx = { path = "../stdx" } 21stdx = { 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]
12rustc-hash = "1.1.0" 12rustc-hash = "1.1.0"
13 13
14tt = { path = "../tt" } 14tt = { path = "../tt", version = "0.0.0" }
15 15
16[dev-dependencies] 16[dev-dependencies]
17mbe = { path = "../mbe" } 17mbe = { 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"
15serde_json = "1.0.48" 15serde_json = "1.0.48"
16jod-thread = "0.1.1" 16jod-thread = "0.1.1"
17 17
18toolchain = { path = "../toolchain" } 18toolchain = { 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"
15arrayvec = "0.5.1" 15arrayvec = "0.5.1"
16itertools = "0.9.0" 16itertools = "0.9.0"
17 17
18stdx = { path = "../stdx" } 18stdx = { path = "../stdx", version = "0.0.0" }
19syntax = { path = "../syntax" } 19syntax = { path = "../syntax", version = "0.0.0" }
20base_db = { path = "../base_db" } 20base_db = { path = "../base_db", version = "0.0.0" }
21profile = { path = "../profile" } 21profile = { path = "../profile", version = "0.0.0" }
22hir_expand = { path = "../hir_expand" } 22hir_expand = { path = "../hir_expand", version = "0.0.0" }
23hir_def = { path = "../hir_def" } 23hir_def = { path = "../hir_def", version = "0.0.0" }
24hir_ty = { path = "../hir_ty" } 24hir_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"
20indexmap = "1.4.0" 20indexmap = "1.4.0"
21smallvec = "1.4.0" 21smallvec = "1.4.0"
22 22
23stdx = { path = "../stdx" } 23stdx = { path = "../stdx", version = "0.0.0" }
24arena = { path = "../arena" } 24arena = { path = "../arena", version = "0.0.0" }
25base_db = { path = "../base_db" } 25base_db = { path = "../base_db", version = "0.0.0" }
26syntax = { path = "../syntax" } 26syntax = { path = "../syntax", version = "0.0.0" }
27profile = { path = "../profile" } 27profile = { path = "../profile", version = "0.0.0" }
28hir_expand = { path = "../hir_expand" } 28hir_expand = { path = "../hir_expand", version = "0.0.0" }
29test_utils = { path = "../test_utils" } 29test_utils = { path = "../test_utils", version = "0.0.0" }
30mbe = { path = "../mbe" } 30mbe = { path = "../mbe", version = "0.0.0" }
31cfg = { path = "../cfg" } 31cfg = { path = "../cfg", version = "0.0.0" }
32tt = { path = "../tt" } 32tt = { path = "../tt", version = "0.0.0" }
33 33
34[dev-dependencies] 34[dev-dependencies]
35expect-test = "0.1" 35expect-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"
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" }
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" }
20chalk-ir = { version = "0.23.0" } 20chalk-ir = { version = "0.23.0" }
21chalk-recursive = { version = "0.23.0" } 21chalk-recursive = { version = "0.23.0" }
22 22
23stdx = { path = "../stdx" } 23stdx = { path = "../stdx", version = "0.0.0" }
24hir_def = { path = "../hir_def" } 24hir_def = { path = "../hir_def", version = "0.0.0" }
25hir_expand = { path = "../hir_expand" } 25hir_expand = { path = "../hir_expand", version = "0.0.0" }
26arena = { path = "../arena" } 26arena = { path = "../arena", version = "0.0.0" }
27base_db = { path = "../base_db" } 27base_db = { path = "../base_db", version = "0.0.0" }
28profile = { path = "../profile" } 28profile = { path = "../profile", version = "0.0.0" }
29syntax = { path = "../syntax" } 29syntax = { path = "../syntax", version = "0.0.0" }
30test_utils = { path = "../test_utils" } 30test_utils = { path = "../test_utils", version = "0.0.0" }
31 31
32[dev-dependencies] 32[dev-dependencies]
33expect-test = "0.1" 33expect-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"
16rustc-hash = "1.1.0" 16rustc-hash = "1.1.0"
17oorandom = "11.1.2" 17oorandom = "11.1.2"
18 18
19stdx = { path = "../stdx" } 19stdx = { path = "../stdx", version = "0.0.0" }
20syntax = { path = "../syntax" } 20syntax = { path = "../syntax", version = "0.0.0" }
21text_edit = { path = "../text_edit" } 21text_edit = { path = "../text_edit", version = "0.0.0" }
22base_db = { path = "../base_db" } 22base_db = { path = "../base_db", version = "0.0.0" }
23ide_db = { path = "../ide_db" } 23ide_db = { path = "../ide_db", version = "0.0.0" }
24cfg = { path = "../cfg" } 24cfg = { path = "../cfg", version = "0.0.0" }
25profile = { path = "../profile" } 25profile = { path = "../profile", version = "0.0.0" }
26test_utils = { path = "../test_utils" } 26test_utils = { path = "../test_utils", version = "0.0.0" }
27assists = { path = "../assists" } 27assists = { path = "../assists", version = "0.0.0" }
28ssr = { path = "../ssr" } 28ssr = { 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`.
32hir = { path = "../hir" } 32hir = { path = "../hir", version = "0.0.0" }
33 33
34[dev-dependencies] 34[dev-dependencies]
35expect-test = "0.1" 35expect-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"
19once_cell = "1.3.1" 19once_cell = "1.3.1"
20either = "1.5.3" 20either = "1.5.3"
21 21
22stdx = { path = "../stdx" } 22stdx = { path = "../stdx", version = "0.0.0" }
23syntax = { path = "../syntax" } 23syntax = { path = "../syntax", version = "0.0.0" }
24text_edit = { path = "../text_edit" } 24text_edit = { path = "../text_edit", version = "0.0.0" }
25base_db = { path = "../base_db" } 25base_db = { path = "../base_db", version = "0.0.0" }
26profile = { path = "../profile" } 26profile = { path = "../profile", version = "0.0.0" }
27test_utils = { path = "../test_utils" } 27test_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`.
30hir = { path = "../hir" } 30hir = { 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"
13smallvec = "1.2.0" 13smallvec = "1.2.0"
14log = "0.4.8" 14log = "0.4.8"
15 15
16syntax = { path = "../syntax" } 16syntax = { path = "../syntax", version = "0.0.0" }
17parser = { path = "../parser" } 17parser = { path = "../parser", version = "0.0.0" }
18tt = { path = "../tt" } 18tt = { path = "../tt", version = "0.0.0" }
19 19
20[dev-dependencies] 20[dev-dependencies]
21test_utils = { path = "../test_utils" } 21test_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"
15crossbeam-channel = "0.4.0" 15crossbeam-channel = "0.4.0"
16jod-thread = "0.1.1" 16jod-thread = "0.1.1"
17 17
18tt = { path = "../tt" } 18tt = { 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"
13libloading = "0.6.0" 13libloading = "0.6.0"
14memmap = "0.7" 14memmap = "0.7"
15 15
16tt = { path = "../tt" } 16tt = { path = "../tt", version = "0.0.0" }
17mbe = { path = "../mbe" } 17mbe = { path = "../mbe", version = "0.0.0" }
18proc_macro_api = { path = "../proc_macro_api" } 18proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
19test_utils = { path = "../test_utils" } 19test_utils = { path = "../test_utils", version = "0.0.0" }
20 20
21[dev-dependencies] 21[dev-dependencies]
22cargo_metadata = "0.11.1" 22cargo_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"
14libc = "0.2.73" 14libc = "0.2.73"
15backtrace = { version = "0.3.44", optional = true } 15backtrace = { version = "0.3.44", optional = true }
16 16
17arena = { path = "../arena" } 17arena = { path = "../arena", version = "0.0.0" }
18 18
19[target.'cfg(target_os = "linux")'.dependencies] 19[target.'cfg(target_os = "linux")'.dependencies]
20perf-event = "0.4" 20perf-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"] }
16serde_json = "1.0.48" 16serde_json = "1.0.48"
17anyhow = "1.0.26" 17anyhow = "1.0.26"
18 18
19arena = { path = "../arena" } 19arena = { path = "../arena", version = "0.0.0" }
20cfg = { path = "../cfg" } 20cfg = { path = "../cfg", version = "0.0.0" }
21base_db = { path = "../base_db" } 21base_db = { path = "../base_db", version = "0.0.0" }
22toolchain = { path = "../toolchain" } 22toolchain = { path = "../toolchain", version = "0.0.0" }
23proc_macro_api = { path = "../proc_macro_api" } 23proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
24paths = { path = "../paths" } 24paths = { path = "../paths", version = "0.0.0" }
25stdx = { path = "../stdx" } 25stdx = { 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"
5authors = ["rust-analyzer developers"] 5authors = ["rust-analyzer developers"]
6autobins = false 6autobins = false
7edition = "2018" 7edition = "2018"
8publish = false
8 9
9[lib] 10[lib]
10doctest = false 11doctest = 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
14rustc-hash = "1.1.0" 14rustc-hash = "1.1.0"
15itertools = "0.9.0" 15itertools = "0.9.0"
16 16
17text_edit = { path = "../text_edit" } 17text_edit = { path = "../text_edit", version = "0.0.0" }
18syntax = { path = "../syntax" } 18syntax = { path = "../syntax", version = "0.0.0" }
19base_db = { path = "../base_db" } 19base_db = { path = "../base_db", version = "0.0.0" }
20ide_db = { path = "../ide_db" } 20ide_db = { path = "../ide_db", version = "0.0.0" }
21hir = { path = "../hir" } 21hir = { path = "../hir", version = "0.0.0" }
22test_utils = { path = "../test_utils" } 22test_utils = { path = "../test_utils", version = "0.0.0" }
23 23
24[dev-dependencies] 24[dev-dependencies]
25expect-test = "0.1" 25expect-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"
23smol_str = { version = "0.1.15", features = ["serde"] } 23smol_str = { version = "0.1.15", features = ["serde"] }
24serde = { version = "1.0.106", features = ["derive"] } 24serde = { version = "1.0.106", features = ["derive"] }
25 25
26stdx = { path = "../stdx" } 26stdx = { path = "../stdx", version = "0.0.0" }
27text_edit = { path = "../text_edit" } 27text_edit = { path = "../text_edit", version = "0.0.0" }
28parser = { path = "../parser" } 28parser = { path = "../parser", version = "0.0.0" }
29 29
30[dev-dependencies] 30[dev-dependencies]
31walkdir = "2.3.1" 31walkdir = "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"
15serde_json = "1.0.48" 15serde_json = "1.0.48"
16rustc-hash = "1.1.0" 16rustc-hash = "1.1.0"
17 17
18stdx = { path = "../stdx" } 18stdx = { 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
14smol_str = { version = "0.1.15", features = ["serde"] } 14smol_str = { version = "0.1.15", features = ["serde"] }
15 15
16stdx = { path = "../stdx" } 16stdx = { 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"
16crossbeam-channel = "0.4.0" 16crossbeam-channel = "0.4.0"
17notify = "5.0.0-pre.3" 17notify = "5.0.0-pre.3"
18 18
19vfs = { path = "../vfs" } 19vfs = { path = "../vfs", version = "0.0.0" }
20paths = { path = "../paths" } 20paths = { 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
12rustc-hash = "1.0" 12rustc-hash = "1.0"
13fst = "0.4" 13fst = "0.4"
14 14
15paths = { path = "../paths" } 15paths = { path = "../paths", version = "0.0.0" }