lighthouse/beacon_node/Cargo.toml

28 lines
836 B
TOML
Raw Normal View History

[package]
name = "beacon_node"
version = "0.1.0"
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
edition = "2018"
[dependencies]
eth2_config = { path = "../eth2/utils/eth2_config" }
2019-09-01 09:32:57 +00:00
lighthouse_bootstrap = { path = "../eth2/utils/lighthouse_bootstrap" }
2019-08-26 04:45:49 +00:00
beacon_chain = { path = "beacon_chain" }
types = { path = "../eth2/types" }
2019-05-21 08:20:23 +00:00
store = { path = "./store" }
client = { path = "client" }
version = { path = "version" }
clap = "2.32.0"
rand = "0.7"
slog = { version = "^2.2.3" , features = ["max_level_trace", "release_max_level_trace"] }
slog-term = "^2.4.0"
slog-async = "^2.3.0"
ctrlc = { version = "3.1.1", features = ["termination"] }
tokio = "0.1.15"
2019-03-26 23:36:20 +00:00
tokio-timer = "0.2.10"
futures = "0.1.25"
exit-future = "0.1.3"
2019-04-15 03:58:41 +00:00
env_logger = "0.6.1"
2019-07-01 06:38:42 +00:00
dirs = "2.0.1"
logging = { path = "../eth2/utils/logging" }