2
0
Fork 1
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:
Yoshua Wuyts 2019-09-10 14:10:42 +02:00
parent 4b535d4ada
commit 1ad339a19e
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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;