Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 58c614f

Browse files
committed
Use crossbeam-channel from the workspace
1 parent f4b1b4b commit 58c614f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

src/tools/rust-analyzer/crates/ide-db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ doctest = false
1414

1515
[dependencies]
1616
cov-mark = "2.0.0-pre.1"
17-
crossbeam-channel = "0.5.5"
17+
crossbeam-channel.workspace = true
1818
tracing.workspace = true
1919
rayon.workspace = true
2020
fst = { version = "0.4.7", default-features = false }

src/tools/rust-analyzer/crates/rust-analyzer/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ path = "src/bin/main.rs"
2121

2222
[dependencies]
2323
anyhow.workspace = true
24-
crossbeam-channel = "0.5.5"
24+
crossbeam-channel.workspace = true
2525
dirs = "5.0.1"
2626
dissimilar.workspace = true
2727
itertools.workspace = true
@@ -90,13 +90,13 @@ jemalloc = ["jemallocator", "profile/jemalloc"]
9090
force-always-assert = ["always-assert/force"]
9191
sysroot-abi = []
9292
in-rust-tree = [
93-
"sysroot-abi",
94-
"syntax/in-rust-tree",
95-
"parser/in-rust-tree",
96-
"hir/in-rust-tree",
97-
"hir-def/in-rust-tree",
98-
"hir-ty/in-rust-tree",
99-
"load-cargo/in-rust-tree",
93+
"sysroot-abi",
94+
"syntax/in-rust-tree",
95+
"parser/in-rust-tree",
96+
"hir/in-rust-tree",
97+
"hir-def/in-rust-tree",
98+
"hir-ty/in-rust-tree",
99+
"load-cargo/in-rust-tree",
100100
]
101101

102102
[lints]

src/tools/rust-analyzer/crates/stdx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ backtrace = { version = "0.3.67", optional = true }
1717
always-assert = { version = "0.2.0", features = ["tracing"] }
1818
jod-thread = "0.1.2"
1919
libc.workspace = true
20-
crossbeam-channel = "0.5.5"
20+
crossbeam-channel.workspace = true
2121
itertools.workspace = true
2222
# Think twice before adding anything here
2323

src/tools/rust-analyzer/crates/vfs-notify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ doctest = false
1515
[dependencies]
1616
tracing.workspace = true
1717
walkdir = "2.3.2"
18-
crossbeam-channel = "0.5.5"
18+
crossbeam-channel.workspace = true
1919
notify = "6.1.1"
2020
rayon = "1.10.0"
2121

src/tools/rust-analyzer/lib/lsp-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ edition = "2021"
1010
log = "0.4.17"
1111
serde_json = "1.0.108"
1212
serde = { version = "1.0.192", features = ["derive"] }
13-
crossbeam-channel = "0.5.8"
13+
crossbeam-channel.workspace = true
1414

1515
[dev-dependencies]
1616
lsp-types = "=0.95"
1717
ctrlc = "3.4.1"
1818

1919
[lints]
20-
workspace = true
20+
workspace = true

0 commit comments

Comments
 (0)