File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ rust-version.workspace = true
15
15
[dependencies ]
16
16
futures-core = " 0.3.17"
17
17
futures-sink = " 0.3.17"
18
- futures-util = { version = " 0.3.17" , default-features = false }
19
18
local-waker = " 0.1"
20
19
21
20
[dev-dependencies ]
21
+ futures-util = { version = " 0.3.17" , default-features = false }
22
22
tokio = { version = " 1.23.1" , features = [" rt" , " macros" ] }
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ use alloc::{collections::VecDeque, rc::Rc};
4
4
use core:: {
5
5
cell:: RefCell ,
6
6
fmt,
7
+ future:: poll_fn,
7
8
pin:: Pin ,
8
9
task:: { Context , Poll } ,
9
10
} ;
10
11
use std:: error:: Error ;
11
12
12
13
use futures_core:: stream:: Stream ;
13
14
use futures_sink:: Sink ;
14
- use futures_util:: future:: poll_fn;
15
15
use local_waker:: LocalWaker ;
16
16
17
17
/// Creates a unbounded in-memory channel with buffered storage.
You can’t perform that action at this time.
0 commit comments