Skip to content

Commit 3883079

Browse files
committed
feat: to no_std future module
1 parent 3b9c7f0 commit 3883079

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/future/mod.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,14 @@
4848
4949
cfg_alloc! {
5050
pub use future::Future;
51-
pub(crate) mod future;
52-
}
53-
54-
cfg_std! {
51+
pub use ready::ready;
5552
pub use pending::pending;
5653
pub use poll_fn::poll_fn;
57-
pub use ready::ready;
5854

55+
pub(crate) mod future;
56+
mod ready;
5957
mod pending;
6058
mod poll_fn;
61-
mod ready;
6259
}
6360

6461
cfg_default! {

0 commit comments

Comments
 (0)