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

@ -17,10 +17,7 @@ reth-chain-state.workspace = true
reth-chainspec.workspace = true
reth-config.workspace = true
reth-evm.workspace = true
reth-exex-types = { workspace = true, features = [
"serde",
"serde-bincode-compat",
] }
reth-exex-types = { workspace = true, features = ["serde", "serde-bincode-compat"] }
reth-fs-util.workspace = true
reth-metrics.workspace = true
reth-node-api.workspace = true
@ -70,14 +67,14 @@ tempfile.workspace = true
[features]
default = []
serde = [
"reth-provider/serde",
"reth-exex-types/serde",
"reth-revm/serde",
"alloy-consensus/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"parking_lot/serde",
"rand/serde",
"secp256k1/serde",
"reth-primitives-traits/serde",
"reth-provider/serde",
"reth-exex-types/serde",
"reth-revm/serde",
"alloy-consensus/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"parking_lot/serde",
"rand/serde",
"secp256k1/serde",
"reth-primitives-traits/serde",
]

View File

@ -36,17 +36,17 @@ rand.workspace = true
[features]
default = []
serde = [
"dep:serde",
"reth-execution-types/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"rand/serde",
"reth-primitives-traits/serde",
"dep:serde",
"reth-execution-types/serde",
"alloy-eips/serde",
"alloy-primitives/serde",
"rand/serde",
"reth-primitives-traits/serde",
]
serde-bincode-compat = [
"reth-execution-types/serde-bincode-compat",
"serde_with",
"reth-primitives/serde-bincode-compat",
"alloy-eips/serde-bincode-compat",
"reth-primitives-traits/serde-bincode-compat",
"reth-execution-types/serde-bincode-compat",
"serde_with",
"reth-primitives/serde-bincode-compat",
"alloy-eips/serde-bincode-compat",
"reth-primitives-traits/serde-bincode-compat",
]