1a3d1b3077
* Fix issues with testnet dir, update docs * Remove "simple testnet" docs * Tear out old "bn testnet" stuff * Add back ClientGenesis::Interop * Tidy * Remove lighthouse-bootstrap module * Fix bug with spec constant mismatch * Ensure beacon-node.toml is written to correct dir * Add -t alias for --testnet-dir * Update book/src/local-testnets.md Co-Authored-By: Age Manning <Age@AgeManning.com> * Add --purge CLI flag * Update purge docs * Perform manual delete of files in purge * Rename --purge to --purge-db * Address Michael's comments Co-authored-by: Age Manning <Age@AgeManning.com>
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "beacon_node"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "beacon_node"
|
|
path = "src/lib.rs"
|
|
|
|
[dev-dependencies]
|
|
node_test_rig = { path = "../tests/node_test_rig" }
|
|
|
|
[dependencies]
|
|
eth2_config = { path = "../eth2/utils/eth2_config" }
|
|
beacon_chain = { path = "beacon_chain" }
|
|
types = { path = "../eth2/types" }
|
|
store = { path = "./store" }
|
|
client = { path = "client" }
|
|
version = { path = "version" }
|
|
clap = "2.33.0"
|
|
rand = "0.7.2"
|
|
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }
|
|
slog-term = "2.4.2"
|
|
slog-async = "2.3.0"
|
|
ctrlc = { version = "3.1.3", features = ["termination"] }
|
|
tokio = "0.1.22"
|
|
tokio-timer = "0.2.12"
|
|
exit-future = "0.1.4"
|
|
env_logger = "0.7.1"
|
|
dirs = "2.0.2"
|
|
logging = { path = "../eth2/utils/logging" }
|
|
futures = "0.1.29"
|
|
environment = { path = "../lighthouse/environment" }
|
|
genesis = { path = "genesis" }
|
|
eth2_testnet_config = { path = "../eth2/utils/eth2_testnet_config" }
|
|
eth2-libp2p = { path = "./eth2-libp2p" }
|
|
eth2_ssz = { path = "../eth2/utils/ssz" }
|
|
toml = "0.5.4"
|
|
serde = "1.0.102"
|