1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#[cfg(feature = "json")] pub mod json; #[cfg(feature = "msgpack")] pub mod msgpack; #[cfg(feature = "xml")] pub mod xml; #[cfg(feature = "yaml")] pub mod yaml; #[cfg(feature = "flex")] pub mod flex; #[cfg(feature = "cbor")] pub mod cbor;