2019-02-14 01:09:18 +00:00
|
|
|
[package]
|
2019-05-21 08:20:23 +00:00
|
|
|
name = "store"
|
2020-08-06 03:43:05 +00:00
|
|
|
version = "0.2.0"
|
2019-02-14 01:09:18 +00:00
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
2022-02-25 00:10:17 +00:00
|
|
|
edition = "2021"
|
2019-02-14 01:09:18 +00:00
|
|
|
|
2019-05-21 06:29:34 +00:00
|
|
|
[dev-dependencies]
|
2019-10-30 01:22:18 +00:00
|
|
|
tempfile = "3.1.0"
|
2021-07-09 06:15:32 +00:00
|
|
|
beacon_chain = {path = "../beacon_chain"}
|
2019-05-21 06:29:34 +00:00
|
|
|
|
2019-02-14 01:09:18 +00:00
|
|
|
[dependencies]
|
2019-05-21 06:29:34 +00:00
|
|
|
db-key = "0.0.5"
|
2020-11-27 03:01:57 +00:00
|
|
|
leveldb = { version = "0.8.6", default-features = false }
|
2022-04-04 00:26:16 +00:00
|
|
|
parking_lot = "0.12.0"
|
2021-07-09 06:15:32 +00:00
|
|
|
itertools = "0.10.0"
|
2021-11-29 03:57:54 +00:00
|
|
|
eth2_ssz = "0.4.1"
|
2022-11-02 14:30:41 +00:00
|
|
|
eth2_ssz_derive = "0.3.1"
|
2020-05-18 11:24:23 +00:00
|
|
|
types = { path = "../../consensus/types" }
|
|
|
|
state_processing = { path = "../../consensus/state_processing" }
|
2020-05-17 11:16:48 +00:00
|
|
|
slog = "2.5.2"
|
2020-10-05 08:22:19 +00:00
|
|
|
serde = "1.0.116"
|
|
|
|
serde_derive = "1.0.116"
|
2019-10-30 01:22:18 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-05-18 11:24:23 +00:00
|
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
|
2021-12-22 06:17:14 +00:00
|
|
|
lru = "0.7.1"
|
2021-11-30 03:25:32 +00:00
|
|
|
sloggers = { version = "2.1.1", features = ["json"] }
|
2020-11-23 03:43:22 +00:00
|
|
|
directory = { path = "../../common/directory" }
|
2022-04-01 00:58:59 +00:00
|
|
|
strum = { version = "0.24.0", features = ["derive"] }
|