452b46a7af
## Issue Addressed Newer versions of MDBX have removed Windows and macOS support, so this PR pins MDBX at the last working version to prevent an accidental regression via `cargo update`. ## Additional Info This is a short-term solution, if our pinned version of MDBX turns out to be buggy we will need to consider backporting patches from upstream to our own fork.
36 lines
984 B
TOML
36 lines
984 B
TOML
[package]
|
|
name = "slasher"
|
|
version = "0.1.0"
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.1"
|
|
byteorder = "1.3.4"
|
|
eth2_ssz = "0.4.1"
|
|
eth2_ssz_derive = "0.3.0"
|
|
flate2 = { version = "1.0.14", features = ["zlib"], default-features = false }
|
|
lazy_static = "1.4.0"
|
|
lighthouse_metrics = { path = "../common/lighthouse_metrics" }
|
|
filesystem = { path = "../common/filesystem" }
|
|
# MDBX is pinned at the last version with Windows and macOS support. This is only viable short-term.
|
|
mdbx = { package = "libmdbx", version = "=0.1.4" }
|
|
lru = "0.7.1"
|
|
parking_lot = "0.12.0"
|
|
rand = "0.8.5"
|
|
safe_arith = { path = "../consensus/safe_arith" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
slog = "2.5.2"
|
|
sloggers = { version = "2.1.1", features = ["json"] }
|
|
tree_hash = "0.4.1"
|
|
tree_hash_derive = "0.4.0"
|
|
types = { path = "../consensus/types" }
|
|
|
|
[dev-dependencies]
|
|
maplit = "1.0.2"
|
|
rayon = "1.3.0"
|
|
tempfile = "3.1.0"
|
|
logging = { path = "../common/logging" }
|
|
|