We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d71584 commit 3baebfaCopy full SHA for 3baebfa
Cargo.toml
@@ -24,6 +24,7 @@ docs = []
24
unstable = []
25
26
[dependencies]
27
+async-macros = { path = "../async-macros" }
28
async-task = "1.0.0"
29
cfg-if = "0.1.9"
30
crossbeam-channel = "0.3.9"
src/future/mod.rs
@@ -3,6 +3,10 @@
3
#[doc(inline)]
4
pub use std::future::Future;
5
6
+#[doc(inline)]
7
+#[cfg_attr(feature = "docs", doc(cfg(unstable)))]
8
+pub use async_macros::{join, try_join};
9
+
10
use cfg_if::cfg_if;
11
12
pub use pending::pending;
0 commit comments