1#![warn(missing_docs)] 2//! Crate for extending the `Read` and `Write` traits to allow 3//! for reading and writing utf-16 4pub extern crate byteorder; 5 6mod auto; 7mod read; 8mod write; 9 10pub use auto::*; 11pub use read::*; 12pub use write::*;