2019-03-01 01:45:01 +00:00
|
|
|
[package]
|
|
|
|
name = "client"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Age Manning <Age@AgeManning.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
beacon_chain = { path = "../beacon_chain" }
|
|
|
|
network = { path = "../network" }
|
2019-05-21 08:20:23 +00:00
|
|
|
store = { path = "../store" }
|
2019-05-25 04:31:13 +00:00
|
|
|
http_server = { path = "../http_server" }
|
2019-03-19 12:47:58 +00:00
|
|
|
rpc = { path = "../rpc" }
|
2019-05-28 07:30:09 +00:00
|
|
|
prometheus = "^0.6"
|
2019-03-01 01:45:01 +00:00
|
|
|
types = { path = "../../eth2/types" }
|
2019-05-25 10:51:15 +00:00
|
|
|
tree_hash = { path = "../../eth2/utils/tree_hash" }
|
2019-06-09 00:21:50 +00:00
|
|
|
eth2_config = { path = "../../eth2/utils/eth2_config" }
|
2019-03-01 01:45:01 +00:00
|
|
|
slot_clock = { path = "../../eth2/utils/slot_clock" }
|
2019-06-07 23:44:27 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2019-03-01 01:45:01 +00:00
|
|
|
error-chain = "0.12.0"
|
|
|
|
slog = "^2.2.3"
|
2019-03-26 23:36:20 +00:00
|
|
|
ssz = { path = "../../eth2/utils/ssz" }
|
2019-03-01 01:45:01 +00:00
|
|
|
tokio = "0.1.15"
|
|
|
|
clap = "2.32.0"
|
|
|
|
dirs = "1.0.3"
|
|
|
|
exit-future = "0.1.3"
|
|
|
|
futures = "0.1.25"
|