mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-04 15:36:40 +00:00
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)]
|
#[doc(inline)]
|
||||||
pub use std::future::Future;
|
pub use std::future::Future;
|
||||||
|
|
||||||
|
#[doc(inline)]
|
||||||
|
pub use async_macros::{join, try_join};
|
||||||
|
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
|
#[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;
|
use cfg_if::cfg_if;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue