mio-serial 0.3.0

A serial port implementation for mio
Documentation

mio-serial: A serial port IO library MIO.

crates.io docs.rs

mio-serial provides a serial port implementation for mio.

Note: At the moment this is unix (termios) only. No windows COM port yet.

Usage

Add mio-serial to you Cargo.toml:

[dependencies]
mio-serial = "0.2"

Then add this to your crate root:

extern crate mio_serial;

Examples

A few examples can be found here.