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>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tempfile = "3.1.0"
|
2020-05-18 11:24:23 +00:00
|
|
|
types = { path = "../../consensus/types" }
|
2021-08-17 01:00:24 +00:00
|
|
|
rusqlite = { version = "0.25.3", features = ["bundled"] }
|
2020-10-05 08:22:19 +00:00
|
|
|
r2d2 = "0.8.9"
|
2021-08-17 01:00:24 +00:00
|
|
|
r2d2_sqlite = "0.18.0"
|
2020-10-05 08:22:19 +00:00
|
|
|
serde = "1.0.116"
|
|
|
|
serde_derive = "1.0.116"
|
|
|
|
serde_json = "1.0.58"
|
2021-09-03 01:10:25 +00:00
|
|
|
eth2_serde_utils = "0.1.0"
|
2021-05-19 23:05:16 +00:00
|
|
|
filesystem = { path = "../../common/filesystem" }
|
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"
|