Skip to content

Commit 785371c

Browse files
authored
Merge pull request #187 from async-rs/join-macros
add future::{join,try_join,select,try_select} macros
2 parents 553e480 + b951cf2 commit 785371c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/future/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
#[doc(inline)]
44
pub use std::future::Future;
55

6+
#[doc(inline)]
7+
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
8+
pub use async_macros::{join, select, try_join, try_select};
9+
610
use cfg_if::cfg_if;
711

812
pub use pending::pending;

0 commit comments

Comments
 (0)