Skip to content

Commit

Permalink
Fix missing re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Nov 30, 2020
1 parent 7431eb8 commit e029967
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions futures/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ pub mod future {
NeverError,

TryFutureExt,
AndThen, ErrInto, FlattenSink, IntoFuture, MapErr, MapOk, OrElse,
InspectOk, InspectErr, TryFlattenStream, UnwrapOrElse,
AndThen, ErrInto, FlattenSink, IntoFuture, MapErr, MapOk, MapOkOrElse, MapInto,
OrElse, OkInto, InspectOk, InspectErr, TryFlatten, TryFlattenStream, UnwrapOrElse,
};

#[cfg(feature = "alloc")]
Expand Down Expand Up @@ -348,6 +348,9 @@ pub mod io {
Repeat, ReuniteError, Seek, sink, Sink, Take, Window, Write, WriteAll, WriteHalf,
WriteVectored,
};

#[cfg(feature = "write-all-vectored")]
pub use futures_util::io::WriteAllVectored;
}

#[cfg_attr(feature = "cfg-target-has-atomic", cfg(target_has_atomic = "ptr"))]
Expand Down

0 comments on commit e029967

Please sign in to comment.