2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Merge pull request #187 from async-rs/join-macros

add future::{join,try_join,select,try_select} macros
This commit is contained in:
Yoshua Wuyts 2019-09-24 22:18:26 +02:00 committed by GitHub
commit 785371cbc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,10 @@
#[doc(inline)]
pub use std::future::Future;
#[doc(inline)]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub use async_macros::{join, select, try_join, try_select};
use cfg_if::cfg_if;
pub use pending::pending;