extern crate byteorder;
#[macro_use]
extern crate error_chain;
extern crate num_traits;
extern crate serde;
#[macro_use]
extern crate serde_derive;
mod common;
pub mod error;
pub mod identifiable;
pub mod ser;
pub mod de;
pub use error::{Error, ErrorKind, Result, ResultExt};
pub use identifiable::Identifiable;
pub use ser::{Serializer, to_bytes, to_bytes_identifiable, to_writer, to_writer_identifiable};
pub use de::{Deserializer, from_bytes, from_bytes_identifiable, from_reader, from_reader_identifiable};