mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +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>
21 lines
387 B
TOML
21 lines
387 B
TOML
[package]
|
|
name = "eth2_ssz_derive"
|
|
version = "0.3.1"
|
|
authors = ["Paul Hauner <paul@sigmaprime.io>"]
|
|
edition = "2021"
|
|
description = "Procedural derive macros to accompany the eth2_ssz crate."
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "ssz_derive"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "1.0.42"
|
|
proc-macro2 = "1.0.23"
|
|
quote = "1.0.7"
|
|
darling = "0.13.0"
|
|
|
|
[dev-dependencies]
|
|
eth2_ssz = "0.4.1"
|