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>
32 lines
862 B
TOML
32 lines
862 B
TOML
[package]
|
|
name = "slashing_protection"
|
|
version = "0.1.0"
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>", "pscott <scottpiriou@gmail.com>"]
|
|
edition = { workspace = true }
|
|
autotests = false
|
|
|
|
[features]
|
|
arbitrary-fuzz = ["types/arbitrary-fuzz", "eip_3076/arbitrary-fuzz"]
|
|
portable = ["types/portable"]
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
|
eip_3076 = { workspace = true, features = ["json"] }
|
|
ethereum_serde_utils = { workspace = true }
|
|
filesystem = { workspace = true }
|
|
r2d2 = { workspace = true }
|
|
r2d2_sqlite = "0.21.0"
|
|
rusqlite = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tracing = { workspace = true }
|
|
types = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rayon = { workspace = true }
|
|
|
|
[[test]]
|
|
name = "slashing_protection_tests"
|
|
path = "tests/main.rs"
|