#messagepack #serialization #serde

picodata-rmp-serde

Serde bindings for RMP (forked from rmp-serde)

1 stable release

1.0.0 Apr 22, 2024

#1294 in Encoding

Download history 392/week @ 2024-08-31 463/week @ 2024-09-07 541/week @ 2024-09-14 629/week @ 2024-09-21 840/week @ 2024-09-28 479/week @ 2024-10-05 749/week @ 2024-10-12 751/week @ 2024-10-19 434/week @ 2024-10-26 457/week @ 2024-11-02 433/week @ 2024-11-09 606/week @ 2024-11-16 475/week @ 2024-11-23 390/week @ 2024-11-30 561/week @ 2024-12-07 674/week @ 2024-12-14

2,184 downloads per month

MIT license

95KB
2K SLoC

RMP - Rust MessagePack

This is a fork of https://github.com/3Hren/msgpack-rust.

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

~365–690KB
~13K SLoC