Merge pull request #324 from async-rs/stabilize-future-join

stabilize future::{join,try_join}
yoshuawuyts-patch-1
Yoshua Wuyts 5 years ago committed by GitHub
commit 5f52efe465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save