7 releases (3 stable)

1.0.2 Apr 16, 2024
1.0.1 Jul 21, 2023
1.0.0 Aug 17, 2021
0.4.7 Feb 2, 2021
0.3.4 Mar 26, 2017

#212 in Encoding

Download history 21148/week @ 2024-01-05 20141/week @ 2024-01-12 27635/week @ 2024-01-19 22980/week @ 2024-01-26 26360/week @ 2024-02-02 30734/week @ 2024-02-09 21696/week @ 2024-02-16 28307/week @ 2024-02-23 24017/week @ 2024-03-01 25259/week @ 2024-03-08 28087/week @ 2024-03-15 28799/week @ 2024-03-22 38777/week @ 2024-03-29 25193/week @ 2024-04-05 28261/week @ 2024-04-12 23719/week @ 2024-04-19

123,240 downloads per month
Used in 191 crates (72 directly)

MIT license

230KB
4.5K 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

~185–470KB