mio 0.5.1

Lightweight non-blocking IO
Documentation
#[cfg(unix)]
pub use self::unix::{
    Awakener,
    EventedFd,
    Events,
    Io,
    Selector,
    TcpStream,
    TcpListener,
    UdpSocket,
    UnixSocket,
    pipe,
};

#[cfg(unix)]
mod unix;

#[cfg(windows)]
pub use self::windows::{
    Awakener,
    Events,
    Selector,
    TcpStream,
    TcpListener,
    UdpSocket,
};

#[cfg(windows)]
mod windows;