2019-02-14 01:09:18 +00:00
|
|
|
[package]
|
|
|
|
name = "beacon_chain"
|
|
|
|
version = "0.1.0"
|
2019-03-04 05:39:37 +00:00
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com>"]
|
2019-02-14 01:09:18 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bls = { path = "../../eth2/utils/bls" }
|
|
|
|
boolean-bitfield = { path = "../../eth2/utils/boolean-bitfield" }
|
|
|
|
db = { path = "../db" }
|
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
|
|
|
hashing = { path = "../../eth2/utils/hashing" }
|
|
|
|
fork_choice = { path = "../../eth2/fork_choice" }
|
|
|
|
parking_lot = "0.7"
|
|
|
|
log = "0.4"
|
2019-03-29 07:30:03 +00:00
|
|
|
operation_pool = { path = "../../eth2/operation_pool" }
|
2019-02-14 01:09:18 +00:00
|
|
|
env_logger = "0.6"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
|
|
|
ssz = { path = "../../eth2/utils/ssz" }
|
|
|
|
state_processing = { path = "../../eth2/state_processing" }
|
2019-04-16 04:25:43 +00:00
|
|
|
tree_hash = { path = "../../eth2/utils/tree_hash" }
|
2019-02-14 01:09:18 +00:00
|
|
|
types = { path = "../../eth2/types" }
|