blob: b434c29c2f03e67af45d75b1b358bf778afb7fca [file] [log] [blame]
mod array;
mod bin;
mod bool;
mod ext;
mod float;
mod map;
mod null;
mod sint;
mod string;
mod uint;
#[cfg(feature = "std")]
pub type Cursor<'a> = std::io::Cursor<&'a [u8]>;
#[cfg(not(feature = "std"))]
pub type Cursor<'a> = crate::msgpack::decode::Bytes<'a>;