File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ timely_bytes = { path = "../bytes", version = "0.13" }
32
32
timely_logging = { path = " ../logging" , version = " 0.13" }
33
33
timely_communication = { path = " ../communication" , version = " 0.19" , default-features = false }
34
34
timely_container = { path = " ../container" , version = " 0.15" }
35
- crossbeam-channel = " 0.5"
36
35
smallvec = { version = " 1.13.2" , features = [" serde" , " const_generics" ] }
37
36
38
37
[dev-dependencies ]
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::thread::Thread;
6
6
use std:: collections:: BinaryHeap ;
7
7
use std:: time:: { Duration , Instant } ;
8
8
use std:: cmp:: Reverse ;
9
- use crossbeam_channel :: { Sender , Receiver } ;
9
+ use std :: sync :: mpsc :: { Sender , Receiver } ;
10
10
11
11
/// Methods required to act as a timely scheduler.
12
12
///
@@ -56,7 +56,7 @@ impl Activations {
56
56
57
57
/// Creates a new activation tracker.
58
58
pub fn new ( timer : Option < Instant > ) -> Self {
59
- let ( tx, rx) = crossbeam_channel :: unbounded ( ) ;
59
+ let ( tx, rx) = std :: sync :: mpsc :: channel ( ) ;
60
60
Self {
61
61
clean : 0 ,
62
62
bounds : Vec :: new ( ) ,
You can’t perform that action at this time.
0 commit comments