2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-30 17:25:32 +00:00

feat: to no_std future module

This commit is contained in:
k-nasa 2020-02-04 18:04:31 +09:00
parent 3b9c7f0958
commit 3883079fa5

View file

@ -48,17 +48,14 @@
cfg_alloc! {
pub use future::Future;
pub(crate) mod future;
}
cfg_std! {
pub use ready::ready;
pub use pending::pending;
pub use poll_fn::poll_fn;
pub use ready::ready;
pub(crate) mod future;
mod ready;
mod pending;
mod poll_fn;
mod ready;
}
cfg_default! {