peam-ssz 2.0.1

Minimal performance-focused SSZ encoding, decoding, and merkleization crate extracted from Peam
Documentation
1
2
3
4
5
6
7
8
//! Minimal SSZ encode/decode and merkleization crate extracted from Peam.
//!
//! The crate is intentionally small: core SSZ traits live in [`ssz`], reusable
//! container/list/bitfield types live in [`types`], and a couple of low-level
//! write helpers live in [`unsafe_vec`].
pub mod ssz;
pub mod types;
pub mod unsafe_vec;