1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![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::*;
}