2019-08-06 03:29:27 +00:00
|
|
|
[package]
|
2019-09-09 21:05:23 +00:00
|
|
|
name = "lcli"
|
|
|
|
description = "Lighthouse CLI (modeled after zcli)"
|
2023-09-25 05:14:01 +00:00
|
|
|
version = "4.5.0"
|
2019-08-06 03:29:27 +00:00
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2019-08-06 03:29:27 +00:00
|
|
|
|
2020-07-31 05:00:39 +00:00
|
|
|
[features]
|
|
|
|
portable = ["bls/supranational-portable"]
|
2021-09-25 07:53:56 +00:00
|
|
|
fake_crypto = ['bls/fake_crypto']
|
2023-01-20 04:19:29 +00:00
|
|
|
jemalloc = ["malloc_utils/jemalloc"]
|
2019-08-06 03:29:27 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
bls = { workspace = true }
|
|
|
|
clap = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
state_processing = { workspace = true }
|
|
|
|
int_to_bytes = { workspace = true }
|
|
|
|
ethereum_hashing = { workspace = true }
|
|
|
|
ethereum_ssz = { workspace = true }
|
|
|
|
environment = { workspace = true }
|
|
|
|
eth2_network_config = { workspace = true }
|
|
|
|
genesis = { workspace = true }
|
|
|
|
deposit_contract = { workspace = true }
|
|
|
|
tree_hash = { workspace = true }
|
|
|
|
clap_utils = { workspace = true }
|
|
|
|
lighthouse_network = { workspace = true }
|
|
|
|
validator_dir = { workspace = true, features = ["insecure_keys"] }
|
|
|
|
lighthouse_version = { workspace = true }
|
|
|
|
directory = { workspace = true }
|
|
|
|
account_utils = { workspace = true }
|
|
|
|
eth2_wallet = { workspace = true }
|
|
|
|
eth1_test_rig = { workspace = true }
|
|
|
|
sensitive_url = { workspace = true }
|
|
|
|
eth2 = { workspace = true }
|
|
|
|
snap = { workspace = true }
|
|
|
|
beacon_chain = { workspace = true }
|
|
|
|
store = { workspace = true }
|
|
|
|
malloc_utils = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
2023-01-20 04:19:29 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
|
|
normal = ["malloc_utils"]
|