Registry / serialization / rmp
library0.8.15rscratesunverified

Pure Rust MessagePack serialization implementation.

# Cargo.toml [dependencies] rmp = "0.8.15"
INSTALL
IMPORT
SIG · RMP
R
rmp
serializationrustv0.8.15
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

encode
✓ use rmp::encode;

Encodes an integer into MessagePack format.

use rmp::encode; fn main() { let mut buf = Vec::new(); encode::write_sint(&mut buf, 42).unwrap(); println!("{:?}", buf); }
Debug
Known issues
gotchaThe API is low-level; consider using `rmp-serde` for Serde integration.
fix
Add `rmp-serde` to Cargo.toml for high-level serialization.
affects: >=0.8.0
Upgrade
Version history
0.8.15latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
rmp — cargo add rmp · libregistry