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>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-12-06 05:44:03 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "benches"
|
|
|
|
harness = false
|
|
|
|
|
2019-05-21 06:29:34 +00:00
|
|
|
[dev-dependencies]
|
2019-10-30 01:22:18 +00:00
|
|
|
tempfile = "3.1.0"
|
2020-10-05 08:22:19 +00:00
|
|
|
criterion = "0.3.3"
|
|
|
|
rayon = "1.4.1"
|
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-09-21 11:53:53 +00:00
|
|
|
leveldb = "0.8.6"
|
2020-07-06 01:55:56 +00:00
|
|
|
parking_lot = "0.11.0"
|
2020-05-17 11:16:48 +00:00
|
|
|
itertools = "0.9.0"
|
2019-10-30 01:22:18 +00:00
|
|
|
eth2_ssz = "0.1.2"
|
|
|
|
eth2_ssz_derive = "0.1.0"
|
2020-10-05 08:22:19 +00:00
|
|
|
tree_hash = "0.1.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" }
|
2020-10-05 08:22:19 +00:00
|
|
|
lru = "0.6.0"
|
|
|
|
sloggers = "1.0.1"
|