2019-01-27 03:22:51 +00:00
|
|
|
[package]
|
|
|
|
name = "test_harness"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-01-27 04:45:29 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "state_transition"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2"
|
|
|
|
|
2019-01-27 03:22:51 +00:00
|
|
|
[dependencies]
|
2019-01-28 04:50:42 +00:00
|
|
|
attester = { path = "../../../eth2/attester" }
|
2019-01-27 03:22:51 +00:00
|
|
|
beacon_chain = { path = "../../beacon_chain" }
|
|
|
|
block_producer = { path = "../../../eth2/block_producer" }
|
|
|
|
bls = { path = "../../../eth2/utils/bls" }
|
|
|
|
boolean-bitfield = { path = "../../../eth2/utils/boolean-bitfield" }
|
|
|
|
db = { path = "../../db" }
|
2019-01-28 04:50:42 +00:00
|
|
|
parking_lot = "0.7"
|
2019-01-27 03:22:51 +00:00
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
genesis = { path = "../../../eth2/genesis" }
|
|
|
|
hashing = { path = "../../../eth2/utils/hashing" }
|
2019-01-30 13:39:34 +00:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.6.0"
|
|
|
|
rayon = "1.0"
|
2019-01-27 03:22:51 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
slot_clock = { path = "../../../eth2/utils/slot_clock" }
|
|
|
|
ssz = { path = "../../../eth2/utils/ssz" }
|
|
|
|
types = { path = "../../../eth2/types" }
|