7b86c9a08f
* Add progress on new deposits * Add deposited command to account manager * Remove old lcli::helpers mod * Clean clap_utils * Refactor lcli deposit contract commands to use IPC * Make testnet optional for environment * Use dbg formatting for deploy address * Add command to generate bootnode enr * Ensure lcli returns with 1 on error * Ensure account manager returns 1 on error * Disallow deposits to the zero address * Update web3 in eth1 crate * Ensure correct lighthouse dir is created * Reduce deposit gas requirement * Update cargo.lock * Add progress on new deposits * Add deposited command to account manager * Remove old lcli::helpers mod * Clean clap_utils * Refactor lcli deposit contract commands to use IPC * Add command to generate bootnode enr * Ensure lcli returns with 1 on error * Ensure account manager returns 1 on error * Update web3 in eth1 crate * Update Cargo.lock * Move lcli out of main install script * Change --limit to --at-least * Change --datadir to --validator-dir * Remove duplication in docs
32 lines
990 B
TOML
32 lines
990 B
TOML
[package]
|
|
name = "lcli"
|
|
description = "Lighthouse CLI (modeled after zcli)"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
hex = "0.3"
|
|
log = "0.4.8"
|
|
serde = "1.0.102"
|
|
serde_yaml = "0.8.11"
|
|
simple_logger = "1.3.0"
|
|
types = { path = "../eth2/types" }
|
|
state_processing = { path = "../eth2/state_processing" }
|
|
eth2_ssz = "0.1.2"
|
|
regex = "1.3.1"
|
|
eth1_test_rig = { path = "../tests/eth1_test_rig" }
|
|
futures = "0.1.25"
|
|
environment = { path = "../lighthouse/environment" }
|
|
web3 = "0.8.0"
|
|
eth2_testnet_config = { path = "../eth2/utils/eth2_testnet_config" }
|
|
dirs = "2.0"
|
|
genesis = { path = "../beacon_node/genesis" }
|
|
deposit_contract = { path = "../eth2/utils/deposit_contract" }
|
|
tree_hash = { path = "../eth2/utils/tree_hash" }
|
|
clap_utils = { path = "../eth2/utils/clap_utils" }
|
|
eth2-libp2p = { path = "../beacon_node/eth2-libp2p" }
|