We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9356dd5 commit b66509eCopy full SHA for b66509e
src/future/mod.rs
@@ -5,10 +5,6 @@ pub use std::future::Future;
5
6
use cfg_if::cfg_if;
7
8
-// Re-export the `ready!` definition from an external crate to expose it from
9
-// this submodule.
10
-pub use futures::ready;
11
-
12
pub use pending::pending;
13
pub use poll_fn::poll_fn;
14
pub use ready::ready;
src/task/mod.rs
@@ -25,6 +25,10 @@
25
pub use std::task::{Context, Poll, Waker};
26
27
pub use block_on::block_on;
28
+// Re-export the `ready!` definition from an external crate to expose it from
29
+// this submodule.
30
+pub use futures_core::ready;
31
+
32
pub use local::{AccessError, LocalKey};
33
pub use pool::{current, spawn, Builder};
34
pub use sleep::sleep;
0 commit comments