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:
commit
785371cbc4
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue