Skip to content

Commit 5f52efe

Browse files
authored
Merge pull request #324 from async-rs/stabilize-future-join
stabilize future::{join,try_join}
2 parents a9950c5 + 05ba07d commit 5f52efe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/future/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@
4444
#[doc(inline)]
4545
pub use std::future::Future;
4646

47+
#[doc(inline)]
48+
pub use async_macros::{join, try_join};
49+
4750
#[doc(inline)]
4851
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
49-
pub use async_macros::{join, select, try_join, try_select};
52+
pub use async_macros::{select, try_select};
5053

5154
use cfg_if::cfg_if;
5255

0 commit comments

Comments
 (0)