12 releases (4 stable)

1.1.2 Jul 21, 2023
1.1.1 Sep 27, 2022
1.1.0 Apr 19, 2022
1.0.0 Jan 16, 2022
0.8.2 Nov 10, 2015

#13 in Encoding

Download history 112182/week @ 2023-08-14 115830/week @ 2023-08-21 130456/week @ 2023-08-28 139080/week @ 2023-09-04 135858/week @ 2023-09-11 149505/week @ 2023-09-18 239005/week @ 2023-09-25 244570/week @ 2023-10-02 239259/week @ 2023-10-09 257849/week @ 2023-10-16 234545/week @ 2023-10-23 274848/week @ 2023-10-30 270079/week @ 2023-11-06 286599/week @ 2023-11-13 172995/week @ 2023-11-20 192438/week @ 2023-11-27

931,447 downloads per month
Used in 1,155 crates (504 directly)

MIT license

190KB
3.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

~300–630KB
~12K SLoC