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>"]
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
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]
|
2023-09-22 04:30:56 +00:00
|
|
|
tempfile = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
rusqlite = { workspace = true }
|
|
|
|
r2d2 = { workspace = true }
|
2023-02-15 11:51:46 +00:00
|
|
|
r2d2_sqlite = "0.21.0"
|
2023-09-22 04:30:56 +00:00
|
|
|
serde = { workspace = true }
|
2020-10-05 08:22:19 +00:00
|
|
|
serde_derive = "1.0.116"
|
2023-09-22 04:30:56 +00:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
ethereum_serde_utils = { workspace = true }
|
|
|
|
filesystem = { workspace = true }
|
|
|
|
arbitrary = { workspace = true, features = ["derive"] }
|
2020-05-18 06:25:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
lazy_static = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
2022-01-04 20:46:44 +00:00
|
|
|
|
|
|
|
[features]
|
2023-09-22 04:30:56 +00:00
|
|
|
arbitrary-fuzz = ["types/arbitrary-fuzz"]
|