We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91f002d commit 7fe6c8aCopy full SHA for 7fe6c8a
Cargo.toml
@@ -25,6 +25,7 @@ docs = []
25
unstable = []
26
27
[dependencies]
28
+async-macros = "1.0.0"
29
async-task = "1.0.0"
30
cfg-if = "0.1.9"
31
crossbeam-channel = "0.3.9"
src/stream/mod.rs
@@ -42,5 +42,9 @@ cfg_if! {
42
pub use double_ended_stream::DoubleEndedStream;
43
pub use from_stream::FromStream;
44
pub use into_stream::IntoStream;
45
+
46
+ #[cfg_attr(feature = "docs", doc(cfg(unstable)))]
47
+ #[doc(inline)]
48
+ pub use async_macros::{join_stream as join, JoinStream as Join};
49
}
50
0 commit comments