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