add format checker to .toml (#13968)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
georgehao
2025-01-28 20:20:58 +08:00
committed by GitHub
parent 22c1de501b
commit 2e4376f359
91 changed files with 833 additions and 933 deletions

View File

@ -22,12 +22,7 @@ reth-network-peers = { workspace = true, features = ["secp256k1"] }
alloy-primitives = { workspace = true, features = ["rand"] }
alloy-rlp = { workspace = true, features = ["derive"] }
discv5.workspace = true
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
"serde",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery", "serde"] }
enr.workspace = true
# async/futures
@ -53,14 +48,14 @@ reth-tracing.workspace = true
[features]
default = ["serde"]
serde = [
"dep:serde",
"alloy-primitives/serde",
"discv5/serde",
"enr/serde",
"generic-array/serde",
"parking_lot/serde",
"rand?/serde",
"secp256k1/serde",
"reth-ethereum-forks/serde"
"dep:serde",
"alloy-primitives/serde",
"discv5/serde",
"enr/serde",
"generic-array/serde",
"parking_lot/serde",
"rand?/serde",
"secp256k1/serde",
"reth-ethereum-forks/serde",
]
test-utils = ["dep:rand"]