mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-06 10:11:44 +00:00
* Enforce alphabetically ordered cargo deps * Fix test-suite * Another CI fix * Merge branch 'unstable' into cargo-sort * Fix conflicts * Merge remote-tracking branch 'origin/unstable' into cargo-sort
30 lines
751 B
TOML
30 lines
751 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
|
|
|
|
[[test]]
|
|
name = "slashing_protection_tests"
|
|
path = "tests/main.rs"
|
|
|
|
[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 }
|
|
types = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rayon = { workspace = true }
|
|
|
|
[features]
|
|
arbitrary-fuzz = ["types/arbitrary-fuzz"]
|
|
portable = ["types/portable"]
|