# mio-serial: A termios serial implementation for mio
[](https://crates.io/crates/mio-serial)
[](https://docs.rs/mio-serial)
mio-serial provides a termios serial port implementation for
[mio](https://github.com/carllerche/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](https://github.com/berkowski/mio-serial/examples).