We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a89f4c commit a7eaa87Copy full SHA for a7eaa87
1 file changed
src/future/mod.rs
@@ -48,17 +48,14 @@
48
49
cfg_alloc! {
50
pub use future::Future;
51
- pub(crate) mod future;
52
-}
53
-
54
-cfg_std! {
+ pub use ready::ready;
55
pub use pending::pending;
56
pub use poll_fn::poll_fn;
57
- pub use ready::ready;
58
+ pub(crate) mod future;
+ mod ready;
59
mod pending;
60
mod poll_fn;
61
- mod ready;
62
}
63
64
cfg_default! {
0 commit comments