Skip to content

Commit

Permalink
Merge pull request #187 from async-rs/join-macros
Browse files Browse the repository at this point in the history
add future::{join,try_join,select,try_select} macros
  • Loading branch information
yoshuawuyts authored Sep 24, 2019
2 parents 553e480 + b951cf2 commit 785371c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/future/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#[doc(inline)]
pub use std::future::Future;

#[doc(inline)]
#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
pub use async_macros::{join, select, try_join, try_select};

use cfg_if::cfg_if;

pub use pending::pending;
Expand Down

0 comments on commit 785371c

Please sign in to comment.