diff options
author | Aleksey Kladov <[email protected]> | 2020-02-18 13:26:34 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-18 13:44:52 +0000 |
commit | b643ccfaeda59f642a19d87e780976b3536d7b33 (patch) | |
tree | 438f4316e87135fb75454bf7ec5171a575c1fce1 | |
parent | c870318f53562e90269fc70aecdb02d122353814 (diff) |
Drop extra deps
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | crates/ra_ide/Cargo.toml | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock index c10d72aa4..872e66118 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
@@ -1043,7 +1043,6 @@ version = "0.1.0" | |||
1043 | dependencies = [ | 1043 | dependencies = [ |
1044 | "either", | 1044 | "either", |
1045 | "format-buf", | 1045 | "format-buf", |
1046 | "fst", | ||
1047 | "indexmap", | 1046 | "indexmap", |
1048 | "insta", | 1047 | "insta", |
1049 | "itertools", | 1048 | "itertools", |
@@ -1060,11 +1059,8 @@ dependencies = [ | |||
1060 | "ra_syntax", | 1059 | "ra_syntax", |
1061 | "ra_text_edit", | 1060 | "ra_text_edit", |
1062 | "rand", | 1061 | "rand", |
1063 | "rayon", | ||
1064 | "rustc-hash", | 1062 | "rustc-hash", |
1065 | "superslice", | ||
1066 | "test_utils", | 1063 | "test_utils", |
1067 | "unicase", | ||
1068 | ] | 1064 | ] |
1069 | 1065 | ||
1070 | [[package]] | 1066 | [[package]] |
diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index d50cf1d20..97dea5ffd 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml | |||
@@ -17,11 +17,7 @@ indexmap = "1.3.0" | |||
17 | itertools = "0.8.0" | 17 | itertools = "0.8.0" |
18 | join_to_string = "0.1.3" | 18 | join_to_string = "0.1.3" |
19 | log = "0.4.5" | 19 | log = "0.4.5" |
20 | rayon = "1.0.2" | ||
21 | fst = { version = "0.3.1", default-features = false } | ||
22 | rustc-hash = "1.0" | 20 | rustc-hash = "1.0" |
23 | unicase = "2.2.0" | ||
24 | superslice = "1.0.0" | ||
25 | rand = { version = "0.7.0", features = ["small_rng"] } | 21 | rand = { version = "0.7.0", features = ["small_rng"] } |
26 | once_cell = "1.2.0" | 22 | once_cell = "1.2.0" |
27 | 23 | ||