Source code
Revision control
Copy as Markdown
Other Tools
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
extern crate alloc;
pub mod decode;
pub mod encode;
mod errors;
mod marker;
pub use crate::marker::Marker;
pub const MSGPACK_VERSION: u32 = 5;