1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![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::{DecodeFrom, TarsDecoder, TarsDecoderTrait};
    pub use tars_encoder::{EncodeInto, TarsEncoder, TarsEncoderTrait};
}