Files
lighthouse/lcli/Cargo.toml
Jimmy Chen b59feb042c Release v8.0.0 rc.2 (#8255)
Open PRs to include for the release
- #7907
- #8247
- #8251
- #8253
- #8254
- #8265
- #8269
- #8266


  


Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com>

Co-Authored-By: Jimmy Chen <jimmy@sigmaprime.io>
2025-10-23 07:05:49 +00:00

52 lines
1.6 KiB
TOML

[package]
name = "lcli"
description = "Lighthouse CLI (modeled after zcli)"
version = "8.0.0-rc.2"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = { workspace = true }
[package.metadata.cargo-udeps.ignore]
normal = ["malloc_utils"]
[features]
portable = ["bls/supranational-portable"]
fake_crypto = ['bls/fake_crypto']
[dependencies]
account_utils = { workspace = true }
beacon_chain = { workspace = true }
bls = { workspace = true }
clap = { workspace = true }
clap_utils = { workspace = true }
deposit_contract = { workspace = true }
environment = { workspace = true }
eth2 = { workspace = true }
eth2_network_config = { workspace = true }
eth2_wallet = { workspace = true }
ethereum_hashing = { workspace = true }
ethereum_ssz = { workspace = true }
execution_layer = { workspace = true }
hex = { workspace = true }
lighthouse_network = { workspace = true }
lighthouse_version = { workspace = true }
log = { workspace = true }
network_utils = { workspace = true }
rayon = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
snap = { workspace = true }
state_processing = { workspace = true }
store = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tree_hash = { workspace = true }
types = { workspace = true }
validator_dir = { workspace = true }
[target.'cfg(not(target_os = "windows"))'.dependencies]
malloc_utils = { workspace = true, features = ["jemalloc"] }
[target.'cfg(target_os = "windows")'.dependencies]
malloc_utils = { workspace = true, features = [] }