26 releases

new 0.1.31 Nov 12, 2024
0.1.30 Nov 12, 2024
0.1.28 Aug 6, 2024
0.1.27 Jul 18, 2024
0.1.4 Apr 25, 2024

#1042 in Encoding

Download history 145/week @ 2024-07-27 136/week @ 2024-08-03 15/week @ 2024-08-10 1/week @ 2024-08-17 74/week @ 2024-09-14 12/week @ 2024-09-21 3/week @ 2024-09-28 5/week @ 2024-10-12 1/week @ 2024-10-19 104/week @ 2024-10-26 84/week @ 2024-11-02 236/week @ 2024-11-09

426 downloads per month

MIT/Apache

53KB
1.5K SLoC

derse

Rust Crates.io Version codecov

A simple binary serialization protocol for Rust.

Usage

To use this library, add the following to your Cargo.toml:

[dependencies]
derse = "0.1"

Then, you can import and use the components as follows:

use derse::{Deserialize, DownwardBytes, Serialize};

// 1. serialization for basic types.
let ser = "hello world!";
let bytes = ser.serialize::<DownwardBytes>().unwrap();
let der = String::deserialize(&bytes[..]).unwrap();
assert_eq!(ser, der);

// 2. serialization for custom structs.
#[derive(Debug, Default, Deserialize, Serialize, PartialEq)]
pub struct Demo {
    a: i32,
    b: String,
    c: Vec<String>,
}
let ser = Demo::default();
let bytes = ser.serialize::<DownwardBytes>().unwrap();
let der = Demo::deserialize(&bytes[..]).unwrap();
assert_eq!(ser, der);

Dependencies

~1.4–2.1MB
~43K SLoC