wacore_binary/
lib.rs

1#![feature(portable_simd)]
2
3pub mod attrs;
4pub mod builder;
5pub mod consts;
6mod decoder;
7mod encoder;
8pub mod error;
9pub mod jid;
10pub mod marshal;
11pub mod node;
12pub mod token;
13pub mod util;
14
15pub use attrs::{AttrParser, AttrParserRef};
16pub use error::{BinaryError, Result};
17pub use marshal::{marshal, marshal_ref, marshal_ref_to, marshal_to};
18pub use node::{Node, NodeRef};