tars-stream 0.1.1

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_type;

pub mod tars_trait;

pub mod tars_decoder;
pub mod tars_encoder;

pub mod tup_uni_attribute;

pub mod prelude {
    pub use errors::*;
    pub use tars_decoder::*;
    pub use tars_encoder::*;
    pub use tars_trait::*;
    pub use tars_type::*;
    pub use tup_uni_attribute::*;
}