derse

Crates.ioderse
lib.rsderse
version0.1.29
sourcesrc
created_at2024-04-23 08:09:14.240344
updated_at2024-11-01 08:31:49.987165
descriptionA simple binary serialization protocol for Rust.
homepagehttps://github.com/SF-Zhou/derse
repositoryhttps://github.com/SF-Zhou/derse
max_upload_size
id1217274
size53,449
(SF-Zhou)

documentation

README

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);
Commit count: 34

cargo fmt