diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_db/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/ra_hir/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_ide_api/Cargo.toml | 1 | ||||
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_syntax/Cargo.toml | 1 |
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"] | |||
8 | salsa = "0.12.0" | 8 | salsa = "0.12.0" |
9 | relative-path = "0.4.0" | 9 | relative-path = "0.4.0" |
10 | rustc-hash = "1.0" | 10 | rustc-hash = "1.0" |
11 | parking_lot = "0.7.0" | ||
12 | 11 | ||
13 | ra_arena = { path = "../ra_arena" } | 12 | ra_arena = { path = "../ra_arena" } |
14 | ra_syntax = { path = "../ra_syntax" } | 13 | ra_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" | |||
9 | log = "0.4.5" | 9 | log = "0.4.5" |
10 | relative-path = "0.4.0" | 10 | relative-path = "0.4.0" |
11 | rustc-hash = "1.0" | 11 | rustc-hash = "1.0" |
12 | parking_lot = "0.7.0" | 12 | parking_lot = "0.8.0" |
13 | ena = "0.11" | 13 | ena = "0.11" |
14 | join_to_string = "0.1.3" | 14 | join_to_string = "0.1.3" |
15 | either = "1.5.2" | 15 | either = "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" | |||
12 | rayon = "1.0.2" | 12 | rayon = "1.0.2" |
13 | fst = { version = "0.3.1", default-features = false } | 13 | fst = { version = "0.3.1", default-features = false } |
14 | rustc-hash = "1.0" | 14 | rustc-hash = "1.0" |
15 | parking_lot = "0.7.0" | ||
16 | unicase = "2.2.0" | 15 | unicase = "2.2.0" |
17 | superslice = "1.0.0" | 16 | superslice = "1.0.0" |
18 | rand = "0.6.5" | 17 | rand = "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" | |||
17 | url_serde = "0.2.0" | 17 | url_serde = "0.2.0" |
18 | lsp-types = { version = "0.57.1", features = ["proposed"] } | 18 | lsp-types = { version = "0.57.1", features = ["proposed"] } |
19 | rustc-hash = "1.0" | 19 | rustc-hash = "1.0" |
20 | parking_lot = "0.7.0" | 20 | parking_lot = "0.8.0" |
21 | 21 | ||
22 | ra_vfs = "0.2.0" | 22 | ra_vfs = "0.2.0" |
23 | thread_worker = { path = "../thread_worker" } | 23 | thread_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" | |||
12 | unicode-xid = "0.1.0" | 12 | unicode-xid = "0.1.0" |
13 | itertools = "0.8.0" | 13 | itertools = "0.8.0" |
14 | drop_bomb = "0.1.4" | 14 | drop_bomb = "0.1.4" |
15 | parking_lot = "0.7.0" | ||
16 | rowan = "0.5.0" | 15 | rowan = "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 |