Use crossbeam-channel from the workspace

This commit is contained in:
mo8it 2024-08-09 23:48:03 +02:00
parent 3b560a550a
commit 0b541ebbaa
5 changed files with 13 additions and 13 deletions

View file

@ -14,7 +14,7 @@ doctest = false
[dependencies] [dependencies]
cov-mark = "2.0.0-pre.1" cov-mark = "2.0.0-pre.1"
crossbeam-channel = "0.5.5" crossbeam-channel.workspace = true
tracing.workspace = true tracing.workspace = true
rayon.workspace = true rayon.workspace = true
fst = { version = "0.4.7", default-features = false } fst = { version = "0.4.7", default-features = false }

View file

@ -21,7 +21,7 @@ path = "src/bin/main.rs"
[dependencies] [dependencies]
anyhow.workspace = true anyhow.workspace = true
crossbeam-channel = "0.5.5" crossbeam-channel.workspace = true
dirs = "5.0.1" dirs = "5.0.1"
dissimilar.workspace = true dissimilar.workspace = true
itertools.workspace = true itertools.workspace = true
@ -90,13 +90,13 @@ jemalloc = ["jemallocator", "profile/jemalloc"]
force-always-assert = ["always-assert/force"] force-always-assert = ["always-assert/force"]
sysroot-abi = [] sysroot-abi = []
in-rust-tree = [ in-rust-tree = [
"sysroot-abi", "sysroot-abi",
"syntax/in-rust-tree", "syntax/in-rust-tree",
"parser/in-rust-tree", "parser/in-rust-tree",
"hir/in-rust-tree", "hir/in-rust-tree",
"hir-def/in-rust-tree", "hir-def/in-rust-tree",
"hir-ty/in-rust-tree", "hir-ty/in-rust-tree",
"load-cargo/in-rust-tree", "load-cargo/in-rust-tree",
] ]
[lints] [lints]

View file

@ -17,7 +17,7 @@ backtrace = { version = "0.3.67", optional = true }
always-assert = { version = "0.2.0", features = ["tracing"] } always-assert = { version = "0.2.0", features = ["tracing"] }
jod-thread = "0.1.2" jod-thread = "0.1.2"
libc.workspace = true libc.workspace = true
crossbeam-channel = "0.5.5" crossbeam-channel.workspace = true
itertools.workspace = true itertools.workspace = true
# Think twice before adding anything here # Think twice before adding anything here

View file

@ -15,7 +15,7 @@ doctest = false
[dependencies] [dependencies]
tracing.workspace = true tracing.workspace = true
walkdir = "2.3.2" walkdir = "2.3.2"
crossbeam-channel = "0.5.5" crossbeam-channel.workspace = true
notify = "6.1.1" notify = "6.1.1"
rayon = "1.10.0" rayon = "1.10.0"

View file

@ -10,11 +10,11 @@ edition = "2021"
log = "0.4.17" log = "0.4.17"
serde_json = "1.0.108" serde_json = "1.0.108"
serde = { version = "1.0.192", features = ["derive"] } serde = { version = "1.0.192", features = ["derive"] }
crossbeam-channel = "0.5.8" crossbeam-channel.workspace = true
[dev-dependencies] [dev-dependencies]
lsp-types = "=0.95" lsp-types = "=0.95"
ctrlc = "3.4.1" ctrlc = "3.4.1"
[lints] [lints]
workspace = true workspace = true