1
2
3
4
5
6
7
8
9
//! Utilities for working with Tokio.
//!
//! This module contains utilities that are useful for working with Tokio.
//! Currently, this only includes [`FutureExt`][FutureExt]. However, this will
//! include over time.

mod future;

pub use self::future::FutureExt;