Skip to main content

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::{
18    marshal, marshal_auto, marshal_exact, marshal_ref, marshal_ref_auto, marshal_ref_exact,
19    marshal_ref_to, marshal_ref_to_vec, marshal_to, marshal_to_vec,
20};
21pub use node::{Node, NodeRef, NodeValue};