serde_mtproto 0.3.0

MTProto [de]serialization for Rust
Documentation
//! # Serde MTProto
//!
//! MTProto is a mobile-first protocol for access to a server API.
//! This crate provides means to serialize Rust types to its binary
//! representation and to deserialize from said representation.

extern crate byteorder;
#[macro_use]
extern crate error_chain;
extern crate num_traits;
extern crate serde;
#[macro_use]
extern crate serde_derive;


mod utils;

pub mod boxed;
pub mod error;
pub mod identifiable;
pub mod ser;
pub mod de;

pub use boxed::Boxed;
pub use error::{Error, ErrorKind, Result, ResultExt};
pub use identifiable::Identifiable;
pub use ser::{Serializer, to_bytes, to_writer};
pub use de::{Deserializer, from_bytes, from_reader};