2019-02-14 01:09:18 +00:00
|
|
|
[package]
|
2019-05-21 08:20:23 +00:00
|
|
|
name = "store"
|
2019-02-14 01:09:18 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
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"
|
2019-11-26 23:54:46 +00:00
|
|
|
sloggers = "0.3.2"
|
2019-12-06 05:44:03 +00:00
|
|
|
criterion = "0.3.0"
|
|
|
|
rayon = "1.2.0"
|
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"
|
|
|
|
leveldb = "0.8.4"
|
2019-10-30 01:22:18 +00:00
|
|
|
parking_lot = "0.9.0"
|
2020-01-08 02:58:01 +00:00
|
|
|
itertools = "0.8"
|
2019-10-30 01:22:18 +00:00
|
|
|
eth2_ssz = "0.1.2"
|
|
|
|
eth2_ssz_derive = "0.1.0"
|
|
|
|
tree_hash = "0.1.0"
|
2019-05-20 08:01:51 +00:00
|
|
|
types = { path = "../../eth2/types" }
|
2019-12-06 03:29:06 +00:00
|
|
|
state_processing = { path = "../../eth2/state_processing" }
|
2019-11-26 23:54:46 +00:00
|
|
|
slog = "2.2.3"
|
2019-12-06 03:29:06 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0.102"
|
2019-10-30 01:22:18 +00:00
|
|
|
lazy_static = "1.4.0"
|
2019-08-19 11:02:34 +00:00
|
|
|
lighthouse_metrics = { path = "../../eth2/utils/lighthouse_metrics" }
|