mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-20 22:38:34 +00:00
Fix cargo-sort errors (#8945)
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>
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
[package]
|
||||
name = "beacon_node"
|
||||
version = { workspace = true }
|
||||
authors = [
|
||||
"Paul Hauner <paul@paulhauner.com>",
|
||||
"Age Manning <Age@AgeManning.com",
|
||||
]
|
||||
authors = ["Paul Hauner <paul@paulhauner.com>", "Age Manning <Age@AgeManning.com"]
|
||||
edition = { workspace = true }
|
||||
|
||||
[lib]
|
||||
@@ -12,10 +9,10 @@ name = "beacon_node"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[features]
|
||||
write_ssz_files = [
|
||||
"beacon_chain/write_ssz_files",
|
||||
] # Writes debugging .ssz files to /tmp during block processing.
|
||||
testing = [] # Enables testing-only CLI flags
|
||||
# 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 }
|
||||
|
||||
Reference in New Issue
Block a user