Skip to content

Commit 0df82d0

Browse files
Merge pull request #1228 from tureus/stream-obj-mod-exposure
StreamObj should be exported by the main futures crate
2 parents 94e9d4c + 9776723 commit 0df82d0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

futures/src/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,10 @@ pub mod stream {
298298
//! [`futures_unordered`](crate::stream::futures_unordered()), which
299299
//! constructs a stream from a collection of futures.
300300
301-
pub use futures_core::stream::{Stream, TryStream};
301+
pub use futures_core::stream::{
302+
Stream, TryStream,
303+
StreamObj, LocalStreamObj, UnsafeStreamObj
304+
};
302305

303306
pub use futures_util::stream::{
304307
iter, Iter,

0 commit comments

Comments
 (0)