Remove unused dependencies

This commit is contained in:
Shotaro Yamada 2020-02-27 13:33:03 +09:00
parent 13e16a4ad4
commit 33de107ed9
9 changed files with 0 additions and 44 deletions

20
Cargo.lock generated
View file

@ -906,7 +906,6 @@ version = "0.1.0"
name = "ra_assists" name = "ra_assists"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"either",
"format-buf", "format-buf",
"join_to_string", "join_to_string",
"ra_db", "ra_db",
@ -927,10 +926,8 @@ dependencies = [
"cargo_metadata", "cargo_metadata",
"crossbeam-channel", "crossbeam-channel",
"insta", "insta",
"jod-thread",
"log", "log",
"lsp-types", "lsp-types",
"parking_lot",
"serde_json", "serde_json",
] ]
@ -988,7 +985,6 @@ dependencies = [
"drop_bomb", "drop_bomb",
"either", "either",
"insta", "insta",
"itertools",
"log", "log",
"once_cell", "once_cell",
"ra_arena", "ra_arena",
@ -1046,7 +1042,6 @@ version = "0.1.0"
dependencies = [ dependencies = [
"either", "either",
"format-buf", "format-buf",
"fst",
"indexmap", "indexmap",
"insta", "insta",
"itertools", "itertools",
@ -1063,9 +1058,7 @@ dependencies = [
"ra_syntax", "ra_syntax",
"ra_text_edit", "ra_text_edit",
"rand", "rand",
"rayon",
"rustc-hash", "rustc-hash",
"superslice",
"test_utils", "test_utils",
] ]
@ -1073,18 +1066,9 @@ dependencies = [
name = "ra_ide_db" name = "ra_ide_db"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"either",
"format-buf",
"fst", "fst",
"indexmap",
"insta",
"itertools",
"join_to_string",
"log", "log",
"once_cell",
"ra_cfg",
"ra_db", "ra_db",
"ra_fmt",
"ra_hir", "ra_hir",
"ra_prof", "ra_prof",
"ra_syntax", "ra_syntax",
@ -1092,7 +1076,6 @@ dependencies = [
"rayon", "rayon",
"rustc-hash", "rustc-hash",
"superslice", "superslice",
"test_utils",
] ]
[[package]] [[package]]
@ -1120,7 +1103,6 @@ name = "ra_prof"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"itertools",
"jemalloc-ctl", "jemalloc-ctl",
"jemallocator", "jemallocator",
"once_cell", "once_cell",
@ -1163,7 +1145,6 @@ dependencies = [
name = "ra_text_edit" name = "ra_text_edit"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"test_utils",
"text_unit", "text_unit",
] ]
@ -1322,7 +1303,6 @@ version = "0.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"crossbeam-channel", "crossbeam-channel",
"either",
"env_logger", "env_logger",
"globset", "globset",
"itertools", "itertools",

View file

@ -11,7 +11,6 @@ doctest = false
format-buf = "1.0.0" format-buf = "1.0.0"
join_to_string = "0.1.3" join_to_string = "0.1.3"
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
either = "1.5.3"
ra_syntax = { path = "../ra_syntax" } ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" } ra_text_edit = { path = "../ra_text_edit" }

View file

@ -9,10 +9,7 @@ crossbeam-channel = "0.4.0"
lsp-types = { version = "0.71.0", features = ["proposed"] } lsp-types = { version = "0.71.0", features = ["proposed"] }
log = "0.4.8" log = "0.4.8"
cargo_metadata = "0.9.1" cargo_metadata = "0.9.1"
jod-thread = "0.1.0"
parking_lot = "0.10.0"
serde_json = "1.0.48" serde_json = "1.0.48"
[dev-dependencies] [dev-dependencies]
insta = "0.13.1" insta = "0.13.1"
serde_json = "1.0.48"

View file

@ -14,7 +14,6 @@ rustc-hash = "1.1.0"
either = "1.5.3" either = "1.5.3"
anymap = "0.12.1" anymap = "0.12.1"
drop_bomb = "0.1.4" drop_bomb = "0.1.4"
itertools = "0.8.2"
ra_arena = { path = "../ra_arena" } ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" } ra_db = { path = "../ra_db" }

View file

@ -17,10 +17,7 @@ indexmap = "1.3.2"
itertools = "0.8.2" itertools = "0.8.2"
join_to_string = "0.1.3" join_to_string = "0.1.3"
log = "0.4.8" log = "0.4.8"
rayon = "1.3.0"
fst = { version = "0.3.5", default-features = false }
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
superslice = "1.0.0"
rand = { version = "0.7.3", features = ["small_rng"] } rand = { version = "0.7.3", features = ["small_rng"] }
once_cell = "1.3.1" once_cell = "1.3.1"

View file

@ -11,29 +11,17 @@ doctest = false
wasm = [] wasm = []
[dependencies] [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" log = "0.4.8"
rayon = "1.3.0" rayon = "1.3.0"
fst = { version = "0.3.5", default-features = false } fst = { version = "0.3.5", default-features = false }
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
superslice = "1.0.0" superslice = "1.0.0"
once_cell = "1.3.1"
ra_syntax = { path = "../ra_syntax" } ra_syntax = { path = "../ra_syntax" }
ra_text_edit = { path = "../ra_text_edit" } ra_text_edit = { path = "../ra_text_edit" }
ra_db = { path = "../ra_db" } ra_db = { path = "../ra_db" }
ra_cfg = { path = "../ra_cfg" }
ra_fmt = { path = "../ra_fmt" }
ra_prof = { path = "../ra_prof" } ra_prof = { path = "../ra_prof" }
test_utils = { path = "../test_utils" }
# ra_ide should depend only on the top-level `hir` package. if you need # 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`. # something from some `hir_xxx` subpackage, reexport the API via `hir`.
hir = { path = "../ra_hir", package = "ra_hir" } hir = { path = "../ra_hir", package = "ra_hir" }
[dev-dependencies]
insta = "0.13.1"

View file

@ -10,7 +10,6 @@ doctest = false
[dependencies] [dependencies]
once_cell = "1.3.1" once_cell = "1.3.1"
itertools = "0.8.2"
backtrace = { version = "0.3.44", optional = true } backtrace = { version = "0.3.44", optional = true }
[target.'cfg(not(target_env = "msvc"))'.dependencies] [target.'cfg(not(target_env = "msvc"))'.dependencies]

View file

@ -11,5 +11,3 @@ doctest = false
[dependencies] [dependencies]
text_unit = "0.1.10" text_unit = "0.1.10"
[dev-dependencies]
test_utils = { path = "../test_utils" }

View file

@ -15,7 +15,6 @@ path = "./src/bin/main.rs"
[dependencies] [dependencies]
anyhow = "1.0.26" anyhow = "1.0.26"
crossbeam-channel = "0.4.0" crossbeam-channel = "0.4.0"
either = "1.5.3"
env_logger = { version = "0.7.1", default-features = false } env_logger = { version = "0.7.1", default-features = false }
globset = "0.4.4" globset = "0.4.4"
itertools = "0.8.2" itertools = "0.8.2"