7 releases (3 stable)

1.3.0-beta.1 Apr 17, 2024
1.1.2 Jul 21, 2023
1.1.1 Sep 27, 2022
1.1.0 Apr 19, 2022
0.8.2 Nov 10, 2015

#13 in Encoding

Download history 259964/week @ 2024-01-03 272802/week @ 2024-01-10 230338/week @ 2024-01-17 230120/week @ 2024-01-24 218039/week @ 2024-01-31 228971/week @ 2024-02-07 247714/week @ 2024-02-14 252323/week @ 2024-02-21 283682/week @ 2024-02-28 260298/week @ 2024-03-06 235012/week @ 2024-03-13 246161/week @ 2024-03-20 263161/week @ 2024-03-27 248998/week @ 2024-04-03 259024/week @ 2024-04-10 210835/week @ 2024-04-17

1,031,392 downloads per month
Used in 1,283 crates (551 directly)

MIT license

195KB
4K SLoC

RMP - Rust MessagePack

RMP is a pure Rust MessagePack implementation.

Build Status Coverage Status

This repository consists of three separate crates: the RMP core and two implementations to ease serializing and deserializing Rust structs.

crates.rs API Documentation
rmp RMP
rmps RMP Serde
rmpv RMP Value

Features

  • Convenient API

    RMP is designed to be lightweight and straightforward. There are low-level API, which gives you full control on data encoding/decoding process and makes no heap allocations. On the other hand there are high-level API, which provides you convenient interface using Rust standard library and compiler reflection, allowing to encode/decode structures using derive attribute.

  • Zero-copy value decoding

    RMP allows to decode bytes from a buffer in a zero-copy manner easily and blazingly fast, while Rust static checks guarantees that the data will be valid as long as the buffer lives.

  • Clear error handling

    RMP's error system guarantees that you never receive an error enum with unreachable variant.

  • Robust and tested

    This project is developed using TDD and CI, so any found bugs will be fixed without breaking existing functionality.

Requirements

  • Rust 1.53.0 or later

Dependencies

~295–640KB
~13K SLoC