libssz 0.3.0

Simple Serialize (SSZ) encoding/decoding for Ethereum consensus
Documentation
[package]
name = "libssz"
version = "0.3.0"
edition = "2021"
description = "Simple Serialize (SSZ) encoding/decoding for Ethereum consensus"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lambdaclass/libssz"
readme = "../../README.md"
keywords = ["ssz", "ethereum", "serialization", "merkle", "no-std"]
categories = ["encoding", "cryptography::cryptocurrencies"]

[features]
default = ["std"]
std = ["alloc"]
alloc = []
ethereum_types = ["dep:ethereum-types"]

[dependencies]
smallvec = { version = "1.13", default-features = false }
ethereum-types = { version = "0.15", default-features = false, optional = true }