2020-11-23 03:43:22 +00:00
|
|
|
[package]
|
|
|
|
name = "slasher"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>"]
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2020-11-23 03:43:22 +00:00
|
|
|
|
2022-08-15 01:30:56 +00:00
|
|
|
[features]
|
2023-06-07 01:50:33 +00:00
|
|
|
default = ["lmdb"]
|
2022-08-15 01:30:56 +00:00
|
|
|
mdbx = ["dep:mdbx"]
|
|
|
|
lmdb = ["lmdb-rkv", "lmdb-rkv-sys"]
|
|
|
|
|
2020-11-23 03:43:22 +00:00
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
bincode = { workspace = true }
|
|
|
|
byteorder = { workspace = true }
|
|
|
|
ethereum_ssz = { workspace = true }
|
|
|
|
ethereum_ssz_derive = { workspace = true }
|
2020-11-23 03:43:22 +00:00
|
|
|
flate2 = { version = "1.0.14", features = ["zlib"], default-features = false }
|
2023-09-22 04:30:56 +00:00
|
|
|
lazy_static = { workspace = true }
|
|
|
|
lighthouse_metrics = { workspace = true }
|
|
|
|
filesystem = { workspace = true }
|
|
|
|
lru = { workspace = true }
|
|
|
|
parking_lot = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
safe_arith = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
2020-11-23 03:43:22 +00:00
|
|
|
serde_derive = "1.0"
|
2023-09-22 04:30:56 +00:00
|
|
|
slog = { workspace = true }
|
|
|
|
sloggers = { workspace = true }
|
|
|
|
tree_hash = { workspace = true }
|
|
|
|
tree_hash_derive = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
strum = { workspace = true }
|
2022-08-15 01:30:56 +00:00
|
|
|
|
|
|
|
# MDBX is pinned at the last version with Windows and macOS support.
|
|
|
|
mdbx = { package = "libmdbx", git = "https://github.com/sigp/libmdbx-rs", tag = "v0.1.4", optional = true }
|
|
|
|
lmdb-rkv = { git = "https://github.com/sigp/lmdb-rs", rev = "f33845c6469b94265319aac0ed5085597862c27e", optional = true }
|
|
|
|
lmdb-rkv-sys = { git = "https://github.com/sigp/lmdb-rs", rev = "f33845c6469b94265319aac0ed5085597862c27e", optional = true }
|
2020-11-23 03:43:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
maplit = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
logging = { workspace = true }
|
2020-11-23 03:43:22 +00:00
|
|
|
|