]> git.lizzy.rs Git - rust.git/commitdiff
Remove unused dependencies
authorShotaro Yamada <sinkuu@sinkuu.xyz>
Thu, 27 Feb 2020 04:33:03 +0000 (13:33 +0900)
committerShotaro Yamada <sinkuu@sinkuu.xyz>
Thu, 27 Feb 2020 05:04:13 +0000 (14:04 +0900)
Cargo.lock
crates/ra_assists/Cargo.toml
crates/ra_cargo_watch/Cargo.toml
crates/ra_hir_def/Cargo.toml
crates/ra_ide/Cargo.toml
crates/ra_ide_db/Cargo.toml
crates/ra_prof/Cargo.toml
crates/ra_text_edit/Cargo.toml
crates/rust-analyzer/Cargo.toml

index e64c757aa144dba7564fd7cabee49d97bd731829..49fddef4b9fd761bee60a299eaa39391d2bd959b 100644 (file)
@@ -906,7 +906,6 @@ version = "0.1.0"
 name = "ra_assists"
 version = "0.1.0"
 dependencies = [
- "either",
  "format-buf",
  "join_to_string",
  "ra_db",
@@ -927,10 +926,8 @@ dependencies = [
  "cargo_metadata",
  "crossbeam-channel",
  "insta",
- "jod-thread",
  "log",
  "lsp-types",
- "parking_lot",
  "serde_json",
 ]
 
@@ -988,7 +985,6 @@ dependencies = [
  "drop_bomb",
  "either",
  "insta",
- "itertools",
  "log",
  "once_cell",
  "ra_arena",
@@ -1046,7 +1042,6 @@ version = "0.1.0"
 dependencies = [
  "either",
  "format-buf",
- "fst",
  "indexmap",
  "insta",
  "itertools",
@@ -1063,9 +1058,7 @@ dependencies = [
  "ra_syntax",
  "ra_text_edit",
  "rand",
- "rayon",
  "rustc-hash",
- "superslice",
  "test_utils",
 ]
 
@@ -1073,18 +1066,9 @@ dependencies = [
 name = "ra_ide_db"
 version = "0.1.0"
 dependencies = [
- "either",
- "format-buf",
  "fst",
- "indexmap",
- "insta",
- "itertools",
- "join_to_string",
  "log",
- "once_cell",
- "ra_cfg",
  "ra_db",
- "ra_fmt",
  "ra_hir",
  "ra_prof",
  "ra_syntax",
@@ -1092,7 +1076,6 @@ dependencies = [
  "rayon",
  "rustc-hash",
  "superslice",
- "test_utils",
 ]
 
 [[package]]
@@ -1120,7 +1103,6 @@ name = "ra_prof"
 version = "0.1.0"
 dependencies = [
  "backtrace",
- "itertools",
  "jemalloc-ctl",
  "jemallocator",
  "once_cell",
@@ -1163,7 +1145,6 @@ dependencies = [
 name = "ra_text_edit"
 version = "0.1.0"
 dependencies = [
- "test_utils",
  "text_unit",
 ]
 
@@ -1322,7 +1303,6 @@ version = "0.1.0"
 dependencies = [
  "anyhow",
  "crossbeam-channel",
- "either",
  "env_logger",
  "globset",
  "itertools",
index 12a933645fd7e7d8483fa70cd62cd7fa2a9b5b2e..d314dc8e67e7a152cb7ef8cd355944e86a6452f4 100644 (file)
@@ -11,7 +11,6 @@ doctest = false
 format-buf = "1.0.0"
 join_to_string = "0.1.3"
 rustc-hash = "1.1.0"
-either = "1.5.3"
 
 ra_syntax = { path = "../ra_syntax" }
 ra_text_edit = { path = "../ra_text_edit" }
index 989ccc09705352c268abb6211a8e35b5cbc8ef66..1fdbffea18cb949ab5542c490624a4969d4284e7 100644 (file)
@@ -9,10 +9,7 @@ crossbeam-channel = "0.4.0"
 lsp-types = { version = "0.71.0", features = ["proposed"] }
 log = "0.4.8"
 cargo_metadata = "0.9.1"
-jod-thread = "0.1.0"
-parking_lot = "0.10.0"
 serde_json = "1.0.48"
 
 [dev-dependencies]
 insta = "0.13.1"
-serde_json = "1.0.48"
index 5053d06886d1e1891e93f1b2fcdb650aa02691fa..fa25cc4fbb5efb6e0590e3a2fe7a3364c36cd876 100644 (file)
@@ -14,7 +14,6 @@ rustc-hash = "1.1.0"
 either = "1.5.3"
 anymap = "0.12.1"
 drop_bomb = "0.1.4"
-itertools = "0.8.2"
 
 ra_arena = { path = "../ra_arena" }
 ra_db = { path = "../ra_db" }
index 6a3112f9c6949758a01228876f30478253a07c8b..7625fc8c8268d344a0317dfd0e35720101107395 100644 (file)
@@ -17,10 +17,7 @@ indexmap = "1.3.2"
 itertools = "0.8.2"
 join_to_string = "0.1.3"
 log = "0.4.8"
-rayon = "1.3.0"
-fst = { version = "0.3.5", default-features = false }
 rustc-hash = "1.1.0"
-superslice = "1.0.0"
 rand = { version = "0.7.3", features = ["small_rng"] }
 once_cell = "1.3.1"
 
index 2f5b74b929d320a62bcb373c0b83465a5330de34..7b285d28090f91a38ee829a28984200d934d9006 100644 (file)
@@ -11,29 +11,17 @@ doctest = false
 wasm = []
 
 [dependencies]
-either = "1.5.3"
-format-buf = "1.0.0"
-indexmap = "1.3.2"
-itertools = "0.8.2"
-join_to_string = "0.1.3"
 log = "0.4.8"
 rayon = "1.3.0"
 fst = { version = "0.3.5", default-features = false }
 rustc-hash = "1.1.0"
 superslice = "1.0.0"
-once_cell = "1.3.1"
 
 ra_syntax = { path = "../ra_syntax" }
 ra_text_edit = { path = "../ra_text_edit" }
 ra_db = { path = "../ra_db" }
-ra_cfg = { path = "../ra_cfg" }
-ra_fmt = { path = "../ra_fmt" }
 ra_prof = { path = "../ra_prof" }
-test_utils = { path = "../test_utils" }
 
 # ra_ide should depend only on the top-level `hir` package. if you need
 # something from some `hir_xxx` subpackage, reexport the API via `hir`.
 hir = { path = "../ra_hir", package = "ra_hir" }
-
-[dev-dependencies]
-insta = "0.13.1"
index 823745795e8b45efb7a506c8a3f5b1378950a900..d15b089925c13602886032219d1c580a535bf6e1 100644 (file)
@@ -10,7 +10,6 @@ doctest = false
 
 [dependencies]
 once_cell = "1.3.1"
-itertools = "0.8.2"
 backtrace = { version = "0.3.44", optional = true }
 
 [target.'cfg(not(target_env = "msvc"))'.dependencies]
index 97280f86696f674aed3065f8f1324726aceb3c91..cae28389dcfdd54438c028eb6eef76955df87f3a 100644 (file)
@@ -11,5 +11,3 @@ doctest = false
 [dependencies]
 text_unit = "0.1.10"
 
-[dev-dependencies]
-test_utils = { path = "../test_utils" }
index 2cd39b7be6aeb5002ed5867faade08b9f3325607..d00545121bc8d5d36959c6086302744a9be86e1f 100644 (file)
@@ -15,7 +15,6 @@ path = "./src/bin/main.rs"
 [dependencies]
 anyhow = "1.0.26"
 crossbeam-channel = "0.4.0"
-either = "1.5.3"
 env_logger = { version = "0.7.1", default-features = false }
 globset = "0.4.4"
 itertools = "0.8.2"