mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
[cargo-sort is currently failing on CI](https://github.com/sigp/lighthouse/actions/runs/15198128212/job/42746931918?pr=7025), likely due to new checks introduced in version [2.0.0](https://github.com/DevinR528/cargo-sort/releases/tag/v2.0.0). Fixed the errors by running cargo-sort with formatting enabled.
31 lines
782 B
TOML
31 lines
782 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"]
|
|
portable = ["types/portable"]
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
|
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"
|