mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 12:11:59 +00:00
* Add transparent support * Add `Config` struct * Deprecate `enum_behaviour` * Partially remove enum_behaviour from project * Revert "Partially remove enum_behaviour from project" This reverts commit46ffb7fe77. * Revert "Deprecate `enum_behaviour`" This reverts commit89b64a6f53. * Add `struct_behaviour` * Tidy * Move tests into `ssz_derive` * Bump ssz derive * Fix comment * newtype transaparent ssz * use ssz transparent and create macros for per fork implementations * use superstruct map macros Co-authored-by: Paul Hauner <paul@paulhauner.com>
22 lines
441 B
TOML
22 lines
441 B
TOML
[package]
|
|
name = "eth2_ssz"
|
|
version = "0.4.1"
|
|
authors = ["Paul Hauner <paul@sigmaprime.io>"]
|
|
edition = "2021"
|
|
description = "SimpleSerialize (SSZ) as used in Ethereum 2.0"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "ssz"
|
|
|
|
[dev-dependencies]
|
|
eth2_ssz_derive = "0.3.1"
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.12.1"
|
|
smallvec = { version = "1.6.1", features = ["const_generics"] }
|
|
itertools = "0.10.3"
|
|
|
|
[features]
|
|
arbitrary = ["ethereum-types/arbitrary"]
|