lighthouse/eth2/fork_choice/Cargo.toml

26 lines
542 B
TOML
Raw Normal View History

[package]
name = "fork_choice"
version = "0.1.0"
authors = ["Age Manning <Age@AgeManning.com>"]
edition = "2018"
2019-06-03 07:26:40 +00:00
[[bench]]
name = "benches"
harness = false
[dependencies]
2019-05-21 08:20:23 +00:00
store = { path = "../../beacon_node/store" }
ssz = { path = "../utils/ssz" }
types = { path = "../types" }
2019-02-18 06:32:13 +00:00
log = "0.4.6"
bit-vec = "0.5.0"
2019-02-14 13:21:26 +00:00
[dev-dependencies]
2019-06-03 07:26:40 +00:00
criterion = "0.2"
hex = "0.3.2"
2019-02-14 13:21:26 +00:00
yaml-rust = "0.4.2"
bls = { path = "../utils/bls" }
slot_clock = { path = "../utils/slot_clock" }
beacon_chain = { path = "../../beacon_node/beacon_chain" }
2019-02-18 06:32:13 +00:00
env_logger = "0.6.0"