1 2 3 4 5 6 7 8 9
pub mod binary; pub mod json; #[cfg(feature = "msgpack")] pub mod msgpack; pub use json::*; // Re-export binary primitives pub use binary::BinaryFormat;