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-04-03 05:33:12 +00:00
|
|
|
eth2-libp2p = { path = "../eth2-libp2p" }
|
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-25 04:51:45 +00:00
|
|
|
serde = "1.0.93"
|
2019-06-07 23:44:27 +00:00
|
|
|
serde_derive = "1.0"
|
2019-03-01 01:45:01 +00:00
|
|
|
error-chain = "0.12.0"
|
2019-07-03 06:06:20 +00:00
|
|
|
eth2_ssz = { path = "../../eth2/utils/ssz" }
|
2019-07-16 07:28:15 +00:00
|
|
|
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
|
2019-04-15 01:29:08 +00:00
|
|
|
slog-async = "^2.3.0"
|
2019-07-10 00:27:44 +00:00
|
|
|
slog-json = "^2.3"
|
|
|
|
slog-term = "^2.4.0"
|
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"
|