2020-05-18 06:25:16 +00:00
|
|
|
[package]
|
|
|
|
name = "slashing_protection"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>", "pscott <scottpiriou@gmail.com>"]
|
2022-02-25 00:10:17 +00:00
|
|
|
edition = "2021"
|
2022-01-30 23:22:04 +00:00
|
|
|
autotests = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "slashing_protection_tests"
|
|
|
|
path = "tests/main.rs"
|
2020-05-18 06:25:16 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tempfile = "3.1.0"
|
2020-05-18 11:24:23 +00:00
|
|
|
types = { path = "../../consensus/types" }
|
2023-02-15 11:51:46 +00:00
|
|
|
rusqlite = { version = "0.28.0", features = ["bundled"] }
|
2020-10-05 08:22:19 +00:00
|
|
|
r2d2 = "0.8.9"
|
2023-02-15 11:51:46 +00:00
|
|
|
r2d2_sqlite = "0.21.0"
|
2020-10-05 08:22:19 +00:00
|
|
|
serde = "1.0.116"
|
|
|
|
serde_derive = "1.0.116"
|
|
|
|
serde_json = "1.0.58"
|
2021-11-29 22:32:53 +00:00
|
|
|
eth2_serde_utils = "0.1.1"
|
2021-05-19 23:05:16 +00:00
|
|
|
filesystem = { path = "../../common/filesystem" }
|
2022-01-04 20:46:44 +00:00
|
|
|
arbitrary = { version = "1.0", features = ["derive"], optional = true }
|
2020-05-18 06:25:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-06-21 05:46:36 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-10-05 08:22:19 +00:00
|
|
|
rayon = "1.4.1"
|
2022-01-04 20:46:44 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
arbitrary-fuzz = ["arbitrary", "types/arbitrary-fuzz"]
|