1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//! LZMA handling library. #![warn(missing_docs)] extern crate byteorder; mod consts; mod error; pub use error::Error; /// Model property related functions. pub mod properties; pub use properties::Properties; #[doc(hidden)] pub mod reader; pub use reader::{Reader, open, read}; #[doc(hidden)] pub mod writer; pub use writer::{Writer, save, write};