2018-10-20 05:34:08 +00:00
|
|
|
[package]
|
|
|
|
name = "chain"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
2018-12-19 15:38:59 +00:00
|
|
|
edition = "2018"
|
2018-10-20 05:34:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2018-10-21 15:18:35 +00:00
|
|
|
bls = { path = "../utils/bls" }
|
2018-10-23 11:16:26 +00:00
|
|
|
db = { path = "../../lighthouse/db" }
|
2018-10-29 19:29:15 +00:00
|
|
|
naive_fork_choice = { path = "../naive_fork_choice" }
|
|
|
|
ssz = { path = "../utils/ssz" }
|
2018-10-23 11:16:26 +00:00
|
|
|
ssz_helpers = { path = "../utils/ssz_helpers" }
|
2018-10-29 19:29:15 +00:00
|
|
|
state-transition = { path = "../state-transition" }
|
2018-10-20 05:34:08 +00:00
|
|
|
types = { path = "../types" }
|
|
|
|
validator_induction = { path = "../validator_induction" }
|
|
|
|
validator_shuffling = { path = "../validator_shuffling" }
|