mio-serial: A termios serial implementation for mio

crates.io docs.rs

mio-serial provides a termios serial port implementation for mio. As this uses termios there is no windows implementation at this time.

Usage

Add mio-serial to you Cargo.toml:

toml [dependecies] mio-serial = "0.1"

Then add this to your crate root:

rust extern crate mio_serial;

Examples

A few examples can be found here.