19 lines
531 B
TOML
19 lines
531 B
TOML
|
[package]
|
||
|
name = "beacon_chain"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
||
|
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"
|
||
|
genesis = { path = "../../eth2/genesis" }
|
||
|
serde_derive = "1.0"
|
||
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
||
|
spec = { path = "../../eth2/spec" }
|
||
|
ssz = { path = "../../eth2/utils/ssz" }
|
||
|
types = { path = "../../eth2/types" }
|