mio 0.3.0

Lightweight non-blocking IO
1
2
3
4
5
6
7
//! Utilities for non-blocking IO programs

pub use self::mpmc_bounded_queue::Queue as BoundedQueue;
pub use self::slab::Slab;

mod mpmc_bounded_queue;
mod slab;