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

@ -63,20 +63,11 @@ alloy-eips = { workspace = true, features = ["kzg"] }
## async
futures.workspace = true
tokio = { workspace = true, features = [
"sync",
"macros",
"time",
"rt-multi-thread",
] }
tokio = { workspace = true, features = ["sync", "macros", "time", "rt-multi-thread"] }
tokio-stream.workspace = true
## crypto
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
## misc
aquamarine.workspace = true

View File

@ -61,11 +61,7 @@ shellexpand.workspace = true
tracing.workspace = true
# crypto
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
# async
futures.workspace = true

View File

@ -22,7 +22,7 @@ reth-payload-primitives.workspace = true
[features]
default = ["std"]
std = [
"reth-primitives-traits/std",
"reth-chainspec/std",
"reth-engine-primitives/std"
"reth-primitives-traits/std",
"reth-chainspec/std",
"reth-engine-primitives/std",
]