Skip to content

Commit a2e54fc

Browse files
author
Stjepan Glavina
committed
Replace crossbeam with crossbeam-channel
1 parent e93c138 commit a2e54fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ docs = []
2121
[dependencies]
2222
async-task = { git = "ssh://git@github.com/async-std/async-task.git" }
2323
cfg-if = "0.1.9"
24-
crossbeam = "0.7.1"
24+
crossbeam-channel = "0.3.9"
2525
futures-preview = "0.3.0-alpha.17"
2626
futures-timer = "0.3.0"
2727
lazy_static = "1.3.0"

src/task/blocking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::fmt;
44
use std::pin::Pin;
55
use std::thread;
66

7-
use crossbeam::channel::{unbounded, Receiver, Sender};
7+
use crossbeam_channel::{unbounded, Receiver, Sender};
88
use lazy_static::lazy_static;
99

1010
use crate::future::Future;

src/task/pool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::pin::Pin;
66
use std::ptr;
77
use std::thread;
88

9-
use crossbeam::channel::{unbounded, Sender};
9+
use crossbeam_channel::{unbounded, Sender};
1010
use futures::future::FutureExt;
1111
use lazy_static::lazy_static;
1212

0 commit comments

Comments
 (0)