mirror of
https://github.com/async-rs/async-std.git
synced 2025-02-06 04:35:32 +00:00
rebase on master
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
4b535d4ada
commit
1ad339a19e
2 changed files with 4 additions and 4 deletions
|
@ -5,10 +5,6 @@ pub use std::future::Future;
|
|||
|
||||
use cfg_if::cfg_if;
|
||||
|
||||
// Re-export the `ready!` definition from an external crate to expose it from
|
||||
// this submodule.
|
||||
pub use futures::ready;
|
||||
|
||||
pub use pending::pending;
|
||||
pub use poll_fn::poll_fn;
|
||||
pub use ready::ready;
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
pub use std::task::{Context, Poll, Waker};
|
||||
|
||||
pub use block_on::block_on;
|
||||
// Re-export the `ready!` definition from an external crate to expose it from
|
||||
// this submodule.
|
||||
pub use futures_core::ready;
|
||||
|
||||
pub use local::{AccessError, LocalKey};
|
||||
pub use pool::{current, spawn, Builder};
|
||||
pub use sleep::sleep;
|
||||
|
|
Loading…
Reference in a new issue