Skip to content

Commit 7fe6c8a

Browse files
committed
add stream::join
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 91f002d commit 7fe6c8a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Diff for: Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ docs = []
2525
unstable = []
2626

2727
[dependencies]
28+
async-macros = "1.0.0"
2829
async-task = "1.0.0"
2930
cfg-if = "0.1.9"
3031
crossbeam-channel = "0.3.9"

Diff for: src/stream/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,9 @@ cfg_if! {
4242
pub use double_ended_stream::DoubleEndedStream;
4343
pub use from_stream::FromStream;
4444
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};
4549
}
4650
}

0 commit comments

Comments
 (0)