aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-05-30 10:02:30 +0100
committerAleksey Kladov <[email protected]>2019-05-30 10:02:30 +0100
commit18ed3517474dbc41586f71b22c72bf083be3dca9 (patch)
tree1d6de28985e14bc9c53051e8d729218fb65ef3c0 /crates
parent615b59aea09d4bd55c3e3a72e9aab86810107ca6 (diff)
:arrow_up: parking_lot
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_db/Cargo.toml1
-rw-r--r--crates/ra_hir/Cargo.toml2
-rw-r--r--crates/ra_ide_api/Cargo.toml1
-rw-r--r--crates/ra_lsp_server/Cargo.toml2
-rw-r--r--crates/ra_syntax/Cargo.toml1
5 files changed, 2 insertions, 5 deletions
diff --git a/crates/ra_db/Cargo.toml b/crates/ra_db/Cargo.toml
index 5328303d2..b43202890 100644
--- a/crates/ra_db/Cargo.toml
+++ b/crates/ra_db/Cargo.toml
@@ -8,7 +8,6 @@ authors = ["rust-analyzer developers"]
8salsa = "0.12.0" 8salsa = "0.12.0"
9relative-path = "0.4.0" 9relative-path = "0.4.0"
10rustc-hash = "1.0" 10rustc-hash = "1.0"
11parking_lot = "0.7.0"
12 11
13ra_arena = { path = "../ra_arena" } 12ra_arena = { path = "../ra_arena" }
14ra_syntax = { path = "../ra_syntax" } 13ra_syntax = { path = "../ra_syntax" }
diff --git a/crates/ra_hir/Cargo.toml b/crates/ra_hir/Cargo.toml
index 18ecb7957..a86dfa6b2 100644
--- a/crates/ra_hir/Cargo.toml
+++ b/crates/ra_hir/Cargo.toml
@@ -9,7 +9,7 @@ arrayvec = "0.4.10"
9log = "0.4.5" 9log = "0.4.5"
10relative-path = "0.4.0" 10relative-path = "0.4.0"
11rustc-hash = "1.0" 11rustc-hash = "1.0"
12parking_lot = "0.7.0" 12parking_lot = "0.8.0"
13ena = "0.11" 13ena = "0.11"
14join_to_string = "0.1.3" 14join_to_string = "0.1.3"
15either = "1.5.2" 15either = "1.5.2"
diff --git a/crates/ra_ide_api/Cargo.toml b/crates/ra_ide_api/Cargo.toml
index 8939e9d79..9bf5dd6e6 100644
--- a/crates/ra_ide_api/Cargo.toml
+++ b/crates/ra_ide_api/Cargo.toml
@@ -12,7 +12,6 @@ relative-path = "0.4.0"
12rayon = "1.0.2" 12rayon = "1.0.2"
13fst = { version = "0.3.1", default-features = false } 13fst = { version = "0.3.1", default-features = false }
14rustc-hash = "1.0" 14rustc-hash = "1.0"
15parking_lot = "0.7.0"
16unicase = "2.2.0" 15unicase = "2.2.0"
17superslice = "1.0.0" 16superslice = "1.0.0"
18rand = "0.6.5" 17rand = "0.6.5"
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml
index 74861a56a..d52e0165f 100644
--- a/crates/ra_lsp_server/Cargo.toml
+++ b/crates/ra_lsp_server/Cargo.toml
@@ -17,7 +17,7 @@ log = "0.4.3"
17url_serde = "0.2.0" 17url_serde = "0.2.0"
18lsp-types = { version = "0.57.1", features = ["proposed"] } 18lsp-types = { version = "0.57.1", features = ["proposed"] }
19rustc-hash = "1.0" 19rustc-hash = "1.0"
20parking_lot = "0.7.0" 20parking_lot = "0.8.0"
21 21
22ra_vfs = "0.2.0" 22ra_vfs = "0.2.0"
23thread_worker = { path = "../thread_worker" } 23thread_worker = { path = "../thread_worker" }
diff --git a/crates/ra_syntax/Cargo.toml b/crates/ra_syntax/Cargo.toml
index 082bc5253..95ff6b1d8 100644
--- a/crates/ra_syntax/Cargo.toml
+++ b/crates/ra_syntax/Cargo.toml
@@ -12,7 +12,6 @@ arrayvec = "0.4.10"
12unicode-xid = "0.1.0" 12unicode-xid = "0.1.0"
13itertools = "0.8.0" 13itertools = "0.8.0"
14drop_bomb = "0.1.4" 14drop_bomb = "0.1.4"
15parking_lot = "0.7.0"
16rowan = "0.5.0" 15rowan = "0.5.0"
17 16
18# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here 17# ideally, `serde` should be enabled by `ra_lsp_server`, but we enable it here