Skip to content

Commit

Permalink
Reexport Future, Stream, and Sink from the root of futures_util
Browse files Browse the repository at this point in the history
  • Loading branch information
coolreader18 committed Mar 22, 2021
1 parent e22f853 commit e476f3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions futures-util/src/lib.rs
Expand Up @@ -309,18 +309,18 @@ macro_rules! delegate_all {

pub mod future;
#[doc(hidden)]
pub use crate::future::{FutureExt, TryFutureExt};
pub use crate::future::{Future, FutureExt, TryFutureExt};

pub mod stream;
#[doc(hidden)]
pub use crate::stream::{StreamExt, TryStreamExt};
pub use crate::stream::{Stream, StreamExt, TryStreamExt};

#[cfg(feature = "sink")]
#[cfg_attr(docsrs, doc(cfg(feature = "sink")))]
pub mod sink;
#[cfg(feature = "sink")]
#[doc(hidden)]
pub use crate::sink::SinkExt;
pub use crate::sink::{Sink, SinkExt};

pub mod task;

Expand Down

0 comments on commit e476f3a

Please sign in to comment.