mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
The `cargo-sort` job in CI is [failing](https://github.com/sigp/lighthouse/actions/runs/22781651620/job/66088700318?pr=8932) since [cargo-sort v2.1.1](https://github.com/DevinR528/cargo-sort/releases/tag/v2.1.1) has been released, which reports new errors for our Cargo.toml files. Ran `cargo-sort` formatter locally with the new version. Co-Authored-By: ackintosh <sora.akatsuki@gmail.com>
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[package]
|
|
name = "beacon_node"
|
|
version = { workspace = true }
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
|
|
edition = { workspace = true }
|
|
|
|
[lib]
|
|
name = "beacon_node"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
# Writes debugging .ssz files to /tmp during block processing.
|
|
write_ssz_files = ["beacon_chain/write_ssz_files"]
|
|
# Enables testing-only CLI flags.
|
|
testing = []
|
|
|
|
[dependencies]
|
|
account_utils = { workspace = true }
|
|
beacon_chain = { workspace = true }
|
|
bls = { 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 }
|
|
network_utils = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
slasher = { workspace = true }
|
|
store = { workspace = true }
|
|
strum = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tracing = { workspace = true }
|
|
types = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
node_test_rig = { path = "../testing/node_test_rig" }
|