[go: up one dir, main page]

rmp 0.3.1

Pure Rust MessagePack serialization implementation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Low-level interface.
mod null;
mod bool;
mod int;
mod float;
mod string;
mod bin;
mod array;
mod map;
mod ext;

// High-level deserialize interface.
mod decoder;
mod value;