mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
New release for Electra on Holesky and Sepolia. Includes PRs: - https://github.com/sigp/lighthouse/pull/6808 - https://github.com/sigp/lighthouse/pull/6914 - https://github.com/sigp/lighthouse/pull/6949 - https://github.com/sigp/lighthouse/pull/6950 - https://github.com/sigp/lighthouse/pull/6958
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "beacon_node"
|
|
version = "7.0.0-beta.0"
|
|
authors = [
|
|
"Paul Hauner <paul@paulhauner.com>",
|
|
"Age Manning <Age@AgeManning.com",
|
|
]
|
|
edition = { workspace = true }
|
|
|
|
[lib]
|
|
name = "beacon_node"
|
|
path = "src/lib.rs"
|
|
|
|
[dev-dependencies]
|
|
node_test_rig = { path = "../testing/node_test_rig" }
|
|
|
|
[features]
|
|
write_ssz_files = [
|
|
"beacon_chain/write_ssz_files",
|
|
] # Writes debugging .ssz files to /tmp during block processing.
|
|
|
|
[dependencies]
|
|
account_utils = { workspace = true }
|
|
beacon_chain = { workspace = true }
|
|
clap = { workspace = true }
|
|
clap_utils = { workspace = true }
|
|
client = { path = "client" }
|
|
directory = { workspace = true }
|
|
dirs = { workspace = true }
|
|
environment = { workspace = true }
|
|
eth2_config = { workspace = true }
|
|
execution_layer = { workspace = true }
|
|
genesis = { workspace = true }
|
|
hex = { workspace = true }
|
|
http_api = { workspace = true }
|
|
hyper = { workspace = true }
|
|
lighthouse_network = { workspace = true }
|
|
monitoring_api = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
slasher = { workspace = true }
|
|
slog = { workspace = true }
|
|
store = { workspace = true }
|
|
strum = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
types = { workspace = true }
|
|
unused_port = { workspace = true }
|