1#![feature(try_from)]
2#![feature(core_intrinsics)]
3#![feature(extern_prelude)]
4#![feature(specialization)]
5extern crate bytes;
6
7#[macro_use]
8extern crate quick_error;
9
10pub mod errors;
11
12pub mod tars_type;
13
14pub mod tars_trait;
15
16pub mod tars_decoder;
17pub mod tars_encoder;
18
19pub mod tup_uni_attribute;
20
21pub mod prelude {
22 pub use errors::*;
23 pub use tars_decoder::*;
24 pub use tars_encoder::*;
25 pub use tars_trait::*;
26 pub use tars_type::*;
27 pub use tup_uni_attribute::*;
28}