6 releases (3 breaking)

0.4.0 Nov 23, 2021
0.3.0 Aug 24, 2021
0.2.0 Jul 29, 2021
0.1.2 Jul 19, 2019

#12 in #ssz

Download history 12/week @ 2025-12-18 6/week @ 2025-12-25 14/week @ 2026-01-01 21/week @ 2026-01-08 8/week @ 2026-01-15 31/week @ 2026-01-22 22/week @ 2026-01-29 75/week @ 2026-02-05 78/week @ 2026-02-12 122/week @ 2026-02-19 16/week @ 2026-02-26 499/week @ 2026-03-05 216/week @ 2026-03-12 106/week @ 2026-03-19 97/week @ 2026-03-26 211/week @ 2026-04-02

653 downloads per month
Used in 5 crates

Apache-2.0

62KB
1.5K SLoC

simpleserialize (ssz)


lib.rs:

Provides encoding (serialization) and decoding (deserialization) in the SimpleSerialize (SSZ) format designed for use in Ethereum 2.0.

Adheres to the Ethereum 2.0 SSZ specification at v0.12.1.

Example

use ssz_derive::{Encode, Decode};
use ssz::{Decode, Encode};

#[derive(PartialEq, Debug, Encode, Decode)]
struct Foo {
    a: u64,
    b: Vec<u16>,
}

fn ssz_encode_decode_example() {
    let foo = Foo {
        a: 42,
        b: vec![1, 3, 3, 7]
    };

    let ssz_bytes: Vec<u8> = foo.as_ssz_bytes();

    let decoded_foo = Foo::from_ssz_bytes(&ssz_bytes).unwrap();

    assert_eq!(foo, decoded_foo);
}

See examples/ for manual implementations of the Encode and Decode traits.

Dependencies

~480KB