rmp/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(not(feature = "std"), no_std)]
3
4extern crate alloc;
5
6pub mod decode;
7pub mod encode;
8mod errors;
9mod marker;
10
11pub use crate::marker::Marker;
12
13/// Version of the MessagePack [spec](http://github.com/msgpack/msgpack/blob/master/spec.md).
14pub const MSGPACK_VERSION: u32 = 5;