mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
#7894 Moves the `Interchange` format from `slashing_protection` and thus removes the dependency on `slashing_protection` from `eth2` which can now just depend on the slimmer `eip_3076` crate. Co-Authored-By: Mac L <mjladson@pm.me>
21 lines
526 B
TOML
21 lines
526 B
TOML
[package]
|
|
name = "eip_3076"
|
|
version = "0.1.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
arbitrary-fuzz = ["dep:arbitrary", "types/arbitrary"]
|
|
json = ["dep:serde_json"]
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
|
ethereum_serde_utils = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
types = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|