mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
remove unused deps
This commit is contained in:
parent
07fb5db3dc
commit
4ccd90af81
8 changed files with 0 additions and 16 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -99,7 +99,6 @@ dependencies = [
|
||||||
"profile",
|
"profile",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"salsa",
|
"salsa",
|
||||||
"stdx",
|
|
||||||
"syntax",
|
"syntax",
|
||||||
"test_utils",
|
"test_utils",
|
||||||
"tt",
|
"tt",
|
||||||
|
@ -471,7 +470,6 @@ dependencies = [
|
||||||
"hir_def",
|
"hir_def",
|
||||||
"hir_expand",
|
"hir_expand",
|
||||||
"hir_ty",
|
"hir_ty",
|
||||||
"indexmap",
|
|
||||||
"itertools",
|
"itertools",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"profile",
|
"profile",
|
||||||
|
@ -641,7 +639,6 @@ dependencies = [
|
||||||
"syntax",
|
"syntax",
|
||||||
"test_utils",
|
"test_utils",
|
||||||
"text_edit",
|
"text_edit",
|
||||||
"tracing",
|
|
||||||
"xshell",
|
"xshell",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1127,8 +1124,6 @@ dependencies = [
|
||||||
name = "proc_macro_api"
|
name = "proc_macro_api"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
|
||||||
"jod-thread",
|
|
||||||
"memmap2",
|
"memmap2",
|
||||||
"object",
|
"object",
|
||||||
"paths",
|
"paths",
|
||||||
|
@ -1344,7 +1339,6 @@ dependencies = [
|
||||||
"stdx",
|
"stdx",
|
||||||
"syntax",
|
"syntax",
|
||||||
"test_utils",
|
"test_utils",
|
||||||
"text_edit",
|
|
||||||
"threadpool",
|
"threadpool",
|
||||||
"tikv-jemallocator",
|
"tikv-jemallocator",
|
||||||
"toolchain",
|
"toolchain",
|
||||||
|
@ -1561,7 +1555,6 @@ dependencies = [
|
||||||
name = "syntax"
|
name = "syntax"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
|
||||||
"cov-mark",
|
"cov-mark",
|
||||||
"expect-test",
|
"expect-test",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
|
@ -1848,7 +1841,6 @@ dependencies = [
|
||||||
"jod-thread",
|
"jod-thread",
|
||||||
"notify",
|
"notify",
|
||||||
"paths",
|
"paths",
|
||||||
"rustc-hash",
|
|
||||||
"tracing",
|
"tracing",
|
||||||
"vfs",
|
"vfs",
|
||||||
"walkdir",
|
"walkdir",
|
||||||
|
|
|
@ -18,4 +18,3 @@ profile = { path = "../profile", version = "0.0.0" }
|
||||||
tt = { path = "../tt", version = "0.0.0" }
|
tt = { path = "../tt", version = "0.0.0" }
|
||||||
test_utils = { path = "../test_utils", version = "0.0.0" }
|
test_utils = { path = "../test_utils", version = "0.0.0" }
|
||||||
vfs = { path = "../vfs", version = "0.0.0" }
|
vfs = { path = "../vfs", version = "0.0.0" }
|
||||||
stdx = { path = "../stdx", version = "0.0.0" }
|
|
||||||
|
|
|
@ -15,7 +15,6 @@ arrayvec = "0.7"
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
smallvec = "1.4.0"
|
smallvec = "1.4.0"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
indexmap = "1.7"
|
|
||||||
|
|
||||||
stdx = { path = "../stdx", version = "0.0.0" }
|
stdx = { path = "../stdx", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax", version = "0.0.0" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
|
|
|
@ -11,7 +11,6 @@ doctest = false
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cov-mark = "2.0.0-pre.1"
|
cov-mark = "2.0.0-pre.1"
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
tracing = "0.1"
|
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
either = "1.6.1"
|
either = "1.6.1"
|
||||||
once_cell = "1.7"
|
once_cell = "1.7"
|
||||||
|
|
|
@ -12,8 +12,6 @@ doctest = false
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { version = "1.0", features = ["unbounded_depth"] }
|
serde_json = { version = "1.0", features = ["unbounded_depth"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
crossbeam-channel = "0.5.0"
|
|
||||||
jod-thread = "0.1.1"
|
|
||||||
memmap2 = "0.3.0"
|
memmap2 = "0.3.0"
|
||||||
snap = "1.0"
|
snap = "1.0"
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,6 @@ ide_db = { path = "../ide_db", version = "0.0.0" }
|
||||||
profile = { path = "../profile", version = "0.0.0" }
|
profile = { path = "../profile", version = "0.0.0" }
|
||||||
project_model = { path = "../project_model", version = "0.0.0" }
|
project_model = { path = "../project_model", version = "0.0.0" }
|
||||||
syntax = { path = "../syntax", version = "0.0.0" }
|
syntax = { path = "../syntax", version = "0.0.0" }
|
||||||
text_edit = { path = "../text_edit", version = "0.0.0" }
|
|
||||||
vfs = { path = "../vfs", version = "0.0.0" }
|
vfs = { path = "../vfs", version = "0.0.0" }
|
||||||
vfs-notify = { path = "../vfs-notify", version = "0.0.0" }
|
vfs-notify = { path = "../vfs-notify", version = "0.0.0" }
|
||||||
cfg = { path = "../cfg", version = "0.0.0" }
|
cfg = { path = "../cfg", version = "0.0.0" }
|
||||||
|
|
|
@ -15,7 +15,6 @@ itertools = "0.10.0"
|
||||||
rowan = "0.13.0"
|
rowan = "0.13.0"
|
||||||
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
|
rustc_lexer = { version = "725.0.0", package = "rustc-ap-rustc_lexer" }
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
arrayvec = "0.7"
|
|
||||||
once_cell = "1.3.1"
|
once_cell = "1.3.1"
|
||||||
indexmap = "1.4.0"
|
indexmap = "1.4.0"
|
||||||
smol_str = "0.1.15"
|
smol_str = "0.1.15"
|
||||||
|
|
|
@ -10,7 +10,6 @@ doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
rustc-hash = "1.0"
|
|
||||||
jod-thread = "0.1.0"
|
jod-thread = "0.1.0"
|
||||||
walkdir = "2.3.1"
|
walkdir = "2.3.1"
|
||||||
crossbeam-channel = "0.5.0"
|
crossbeam-channel = "0.5.0"
|
||||||
|
|
Loading…
Reference in a new issue