File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ docs = []
21
21
[dependencies ]
22
22
async-task = { git = " ssh://git@github.com/async-std/async-task.git" }
23
23
cfg-if = " 0.1.9"
24
- crossbeam = " 0.7.1 "
24
+ crossbeam-channel = " 0.3.9 "
25
25
futures-preview = " 0.3.0-alpha.17"
26
26
futures-timer = " 0.3.0"
27
27
lazy_static = " 1.3.0"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use std::fmt;
4
4
use std:: pin:: Pin ;
5
5
use std:: thread;
6
6
7
- use crossbeam :: channel :: { unbounded, Receiver , Sender } ;
7
+ use crossbeam_channel :: { unbounded, Receiver , Sender } ;
8
8
use lazy_static:: lazy_static;
9
9
10
10
use crate :: future:: Future ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::pin::Pin;
6
6
use std:: ptr;
7
7
use std:: thread;
8
8
9
- use crossbeam :: channel :: { unbounded, Sender } ;
9
+ use crossbeam_channel :: { unbounded, Sender } ;
10
10
use futures:: future:: FutureExt ;
11
11
use lazy_static:: lazy_static;
12
12
You can’t perform that action at this time.
0 commit comments