mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 11:52:42 +00:00
We have duplicated features which enable `arbitrary` throughout the codebase. These are `arbitrary` and `arbitrary-fuzz`. I think historically these were supposed to be distinct however in practice these function identically and so we can unify them into a single feature to avoid confusion. Co-Authored-By: Mac L <mjladson@pm.me>
23 lines
583 B
TOML
23 lines
583 B
TOML
[package]
|
|
name = "eip_3076"
|
|
version = "0.1.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
arbitrary = ["dep:arbitrary", "types/arbitrary"]
|
|
json = ["dep:serde_json"]
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
bls = { workspace = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
fixed_bytes = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
types = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|