23 lines
562 B
TOML
23 lines
562 B
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
beacon_chain = { path = "../beacon_chain" }
|
|
network = { path = "../network" }
|
|
db = { path = "../db" }
|
|
rpc = { path = "../rpc" }
|
|
fork_choice = { path = "../../eth2/fork_choice" }
|
|
types = { path = "../../eth2/types" }
|
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
|
error-chain = "0.12.0"
|
|
slog = "^2.2.3"
|
|
ssz = { path = "../../eth2/utils/ssz" }
|
|
tokio = "0.1.15"
|
|
clap = "2.32.0"
|
|
dirs = "1.0.3"
|
|
exit-future = "0.1.3"
|
|
futures = "0.1.25"
|