MIO - Metal IO

MIO is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions.

Build Status

Usage

To use mio, first add this to your Cargo.toml:

toml [dependencies.mio] git = "https://github.com/carllerche/mio"

mio is on Crates.io, but is not often updated.

Then, add this to your crate root:

rust extern crate mio;

Features

Eventually

Non goals

The following are specifically omitted from MIO and are left to the user or higher level libraries.

Platforms

Currently, MIO only supports Linux and Darwin. The goal is to support all platforms that support Rust and the readiness IO model.