5cc2fdd3d4
Allows printing debug messages in --release
21 lines
605 B
TOML
21 lines
605 B
TOML
[package]
|
|
name = "beacon_node"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
types = { path = "../eth2/types" }
|
|
client = { path = "client" }
|
|
version = { path = "version" }
|
|
clap = "2.32.0"
|
|
slog = { version = "^2.2.3" , features = ["max_level_trace", "release_max_level_debug"] }
|
|
slog-term = "^2.4.0"
|
|
slog-async = "^2.3.0"
|
|
ctrlc = { version = "3.1.1", features = ["termination"] }
|
|
tokio = "0.1.15"
|
|
tokio-timer = "0.2.10"
|
|
futures = "0.1.25"
|
|
exit-future = "0.1.3"
|
|
state_processing = { path = "../eth2/state_processing" }
|