tokio-threadpool 0.1.18

A task scheduler backed by a work-stealing thread pool.
Documentation
//! Thread parking utilities.

mod boxed;
mod default_park;

pub use self::default_park::{DefaultPark, DefaultUnpark, ParkError};

pub(crate) use self::boxed::{BoxPark, BoxUnpark, BoxedPark};