RMP - Rust MessagePack

RMP is a pure Rust MessagePack implementation.

Build Status

Usage

To use rmp, first add this to your Cargo.toml:

toml [dependencies.rmp] rmp = "0.2.1"

Then, add this to your crate root:

rust extern crate rmp as msgpack;

Features

Examples

Let's try to encode a tuple of int and string.

```rust extern crate rmp as msgpack; extern crate rustc_serialize;

use rustc_serialize::Encodable; use msgpack::Encoder;

fn main() { let val = (42u8, "the Answer");

// The encoder borrows the bytearray buffer.
let mut buf = [0u8; 13];

val.encode(&mut Encoder::new(&mut &mut buf[..]));

assert_eq!([0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72], buf);

} ```

RMP also allows to automatically serialize/deserialize custom structures using rustc_serialize reflection. To enable this feature, derive RustcEncodable and RustcDecodable attributes as shown in the following example:

```rust extern crate rmp as msgpack; extern crate rustc_serialize;

use rustc_serialize::Encodable; use msgpack::Encoder;

[derive(RustcEncodable)]

struct Custom { id: u32, key: String, }

fn main() { let val = Custom { id: 42u32, key: "the Answer".to_string() };

let mut buf = [0u8; 13];

val.encode(&mut Encoder::new(&mut &mut buf[..]));

assert_eq!([0x92, 0x2a, 0xaa, 0x74, 0x68, 0x65, 0x20, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72], buf);

} ```

Limitations and plans

Versioning

This project adheres to Semantic Versioning. However until 1.0.0 comes there will be the following rules: