Skip to content

Commit d608792

Browse files
authored
Rollup merge of rust-lang#119740 - Mark-Simulacrum:drop-crossbeam, r=davidtwco
Remove crossbeam-channel The standard library's std::sync::mpsc basically is a crossbeam channel, and for the use case here will definitely suffice. This drops this dependency from librustc_driver.
2 parents b00a6b5 + be0293f commit d608792

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

Cargo.lock

-1
Original file line numberDiff line numberDiff line change
@@ -3797,7 +3797,6 @@ dependencies = [
37973797
name = "rustc_expand"
37983798
version = "0.0.0"
37993799
dependencies = [
3800-
"crossbeam-channel",
38013800
"rustc_ast",
38023801
"rustc_ast_passes",
38033802
"rustc_ast_pretty",

compiler/rustc_expand/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ doctest = false
99

1010
[dependencies]
1111
# tidy-alphabetical-start
12-
crossbeam-channel = "0.5.0"
1312
rustc_ast = { path = "../rustc_ast" }
1413
rustc_ast_passes = { path = "../rustc_ast_passes" }
1514
rustc_ast_pretty = { path = "../rustc_ast_pretty" }

compiler/rustc_expand/src/proc_macro.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ use rustc_session::config::ProcMacroExecutionStrategy;
1313
use rustc_span::profiling::SpannedEventArgRecorder;
1414
use rustc_span::{Span, DUMMY_SP};
1515

16-
struct CrossbeamMessagePipe<T> {
17-
tx: crossbeam_channel::Sender<T>,
18-
rx: crossbeam_channel::Receiver<T>,
16+
struct MessagePipe<T> {
17+
tx: std::sync::mpsc::SyncSender<T>,
18+
rx: std::sync::mpsc::Receiver<T>,
1919
}
2020

21-
impl<T> pm::bridge::server::MessagePipe<T> for CrossbeamMessagePipe<T> {
21+
impl<T> pm::bridge::server::MessagePipe<T> for MessagePipe<T> {
2222
fn new() -> (Self, Self) {
23-
let (tx1, rx1) = crossbeam_channel::bounded(1);
24-
let (tx2, rx2) = crossbeam_channel::bounded(1);
25-
(CrossbeamMessagePipe { tx: tx1, rx: rx2 }, CrossbeamMessagePipe { tx: tx2, rx: rx1 })
23+
let (tx1, rx1) = std::sync::mpsc::sync_channel(1);
24+
let (tx2, rx2) = std::sync::mpsc::sync_channel(1);
25+
(MessagePipe { tx: tx1, rx: rx2 }, MessagePipe { tx: tx2, rx: rx1 })
2626
}
2727

2828
fn send(&mut self, value: T) {
@@ -35,7 +35,7 @@ impl<T> pm::bridge::server::MessagePipe<T> for CrossbeamMessagePipe<T> {
3535
}
3636

3737
fn exec_strategy(ecx: &ExtCtxt<'_>) -> impl pm::bridge::server::ExecutionStrategy {
38-
pm::bridge::server::MaybeCrossThread::<CrossbeamMessagePipe<_>>::new(
38+
pm::bridge::server::MaybeCrossThread::<MessagePipe<_>>::new(
3939
ecx.sess.opts.unstable_opts.proc_macro_execution_strategy
4040
== ProcMacroExecutionStrategy::CrossThread,
4141
)

0 commit comments

Comments
 (0)