2fcfdf1a01
## Proposed Changes - Fix this cargo-audit failure for `sqlite3-sys`: https://github.com/sigp/lighthouse/actions/runs/4179008889/jobs/7238473962 - Prevent the Docker builds from running out of RAM on CI by removing `gnosis` and LMDB support from the `-dev` images (see: https://github.com/sigp/lighthouse/pull/3959#issuecomment-1430531155, successful run on my fork: https://github.com/michaelsproul/lighthouse/actions/runs/4179162480/jobs/7239537947).
31 lines
760 B
TOML
31 lines
760 B
TOML
[package]
|
|
name = "slashing_protection"
|
|
version = "0.1.0"
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>", "pscott <scottpiriou@gmail.com>"]
|
|
edition = "2021"
|
|
autotests = false
|
|
|
|
[[test]]
|
|
name = "slashing_protection_tests"
|
|
path = "tests/main.rs"
|
|
|
|
[dependencies]
|
|
tempfile = "3.1.0"
|
|
types = { path = "../../consensus/types" }
|
|
rusqlite = { version = "0.28.0", features = ["bundled"] }
|
|
r2d2 = "0.8.9"
|
|
r2d2_sqlite = "0.21.0"
|
|
serde = "1.0.116"
|
|
serde_derive = "1.0.116"
|
|
serde_json = "1.0.58"
|
|
eth2_serde_utils = "0.1.1"
|
|
filesystem = { path = "../../common/filesystem" }
|
|
arbitrary = { version = "1.0", features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "1.4.0"
|
|
rayon = "1.4.1"
|
|
|
|
[features]
|
|
arbitrary-fuzz = ["arbitrary", "types/arbitrary-fuzz"]
|