tars-stream 0.0.3

for tencent/Tars TARS Protocol encoding/decoding
Documentation
#![feature(try_from)]
#![feature(core_intrinsics)]
#![feature(extern_prelude)]
#![feature(specialization)]
extern crate bytes;

#[macro_use]
extern crate quick_error;

pub mod errors;
pub mod tars_decoder;
pub mod tars_encoder;
pub mod tars_type;

pub mod prelude {
    pub use errors::*;
    pub use tars_decoder::{DecodeFromTars, TarsDecoder, TarsDecoderTrait};
    pub use tars_encoder::{EncodeIntoTars, TarsEncoder, TarsEncoderTrait};
}