forked from mirror/async-std
Merge pull request #324 from async-rs/stabilize-future-join
stabilize future::{join,try_join}
This commit is contained in:
commit
5f52efe465
1 changed files with 4 additions and 1 deletions
|
@ -44,9 +44,12 @@
|
|||
#[doc(inline)]
|
||||
pub use std::future::Future;
|
||||
|
||||
#[doc(inline)]
|
||||
pub use async_macros::{join, try_join};
|
||||
|
||||
#[doc(inline)]
|
||||
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
||||
pub use async_macros::{join, select, try_join, try_select};
|
||||
pub use async_macros::{select, try_select};
|
||||
|
||||
use cfg_if::cfg_if;
|
||||
|
||||
|
|
Loading…
Reference in a new issue