#![crate_name = "zser"]
#![crate_type = "lib"]
#![deny(missing_docs)]
#![recursion_limit = "1024"]
#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![cfg_attr(not(feature = "std"), feature(collections))]
#![cfg_attr(feature = "bench", feature(test))]
extern crate byteorder;
#[macro_use]
extern crate error_chain;
#[cfg(not(feature = "std"))]
extern crate collections;
#[cfg(all(feature = "bench", test))]
extern crate test;
#[cfg(all(feature = "bench", test))]
extern crate leb128;
pub mod decoder;
pub mod errors;
pub mod parser;
pub mod value;
pub mod varint;
pub use value::Value;