blob: 58fd3d0b05725a84010a0980e908ba36fd16d799 [file] [log] [blame]
//! Utilities for working with Tokio.
//!
//! This module contains utilities that are useful for working with Tokio.
//! Currently, this only includes [`FutureExt`] and [`StreamExt`], but this
//! may grow over time.
//!
//! [`FutureExt`]: trait.FutureExt.html
//! [`StreamExt`]: trait.StreamExt.html
mod enumerate;
mod future;
mod stream;
pub use self::future::FutureExt;
pub use self::stream::StreamExt;