1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//! MC Named Binary Tag type. #![feature(iter_arith)] #![cfg_attr(test, feature(test))] extern crate byteorder; extern crate flate2; #[cfg(test)] extern crate test; /* Re-export the core API from submodules. */ pub use blob::Blob; pub use error::{Error, Result}; pub use value::Value; pub mod serialize; mod blob; mod error; mod value; #[cfg(test)] mod tests;