mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-03 17:54:28 +00:00
611a0c7d19
* Add the arbitrary type to eth2/types and their deps Signed-off-by: Kirk Baird <baird.k@outlook.com> * Wrap arbitrary in a feature flag Signed-off-by: Kirk Baird <baird.k@outlook.com> * Fix feature for types Signed-off-by: Kirk Baird <baird.k@outlook.com> * Fix comment Signed-off-by: Kirk Baird <baird.k@outlook.com> * Patch versioning Signed-off-by: Kirk Baird <baird.k@outlook.com> * Allow expanded crate reference for arbitrary 0.4.3 Signed-off-by: Kirk Baird <baird.k@outlook.com> * Add arbitrary to remaining types Signed-off-by: Kirk Baird <baird.k@outlook.com> * use cmp::min Signed-off-by: Kirk Baird <baird.k@outlook.com> * Derive Arbitrary trait for ValidatorStatus, TotalBalances and InclusionInfo * Add CI check for state processing arbitrary faetures Signed-off-by: Kirk Baird <baird.k@outlook.com> * Fix indentation Signed-off-by: Kirk Baird <baird.k@outlook.com> Co-authored-by: Mehdi Zerouali <mehdi@sigmaprime.io>
32 lines
991 B
TOML
32 lines
991 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.10.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" }
|