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

expose future::ready!

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-08-30 21:27:53 +02:00
parent e6880e12e8
commit 4b535d4ada
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED

View file

@ -5,6 +5,10 @@ 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;