mio-serial 0.6.0

A serial port implementation for mio
Documentation

mio-serial: A serial port IO library MIO.

Build Status 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.6"

Then add this to your crate root:

extern crate mio_serial;

Examples

A few examples can be found here.

License

This software is licensed under MIT.

This software builds upon the MPL-2.0 licensed serialport-rs and constitutes a "Larger Work" by that license. The source for serialport-rs can be found at https://gitlab.com/susurrus/serialport-rs.