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

@ -20,4 +20,4 @@ eyre.workspace = true
[dev-dependencies]
clap.workspace = true
reth-cli-commands.workspace = true
reth-cli-commands.workspace = true

View File

@ -35,14 +35,14 @@ serde_json.workspace = true
[features]
default = ["std"]
std = [
"reth-chainspec/std",
"reth-primitives/std",
"alloy-primitives/std",
"alloy-eips/std",
"alloy-rpc-types-engine/std",
"alloy-rlp/std",
"serde/std",
"sha2/std",
"serde_json/std",
"reth-engine-primitives/std"
"reth-chainspec/std",
"reth-primitives/std",
"alloy-primitives/std",
"alloy-eips/std",
"alloy-rpc-types-engine/std",
"alloy-rlp/std",
"serde/std",
"sha2/std",
"serde_json/std",
"reth-engine-primitives/std",
]

View File

@ -46,18 +46,18 @@ alloy-genesis.workspace = true
[features]
default = ["std"]
std = [
"reth-consensus/std",
"reth-primitives/std",
"reth-revm/std",
"alloy-consensus/std",
"alloy-eips/std",
"alloy-genesis/std",
"alloy-primitives/std",
"revm-primitives/std",
"secp256k1/std",
"reth-ethereum-forks/std",
"serde_json/std",
"reth-primitives-traits/std",
"reth-chainspec/std",
"derive_more/std"
"reth-consensus/std",
"reth-primitives/std",
"reth-revm/std",
"alloy-consensus/std",
"alloy-eips/std",
"alloy-genesis/std",
"alloy-primitives/std",
"revm-primitives/std",
"secp256k1/std",
"reth-ethereum-forks/std",
"serde_json/std",
"reth-primitives-traits/std",
"reth-chainspec/std",
"derive_more/std",
]

View File

@ -68,7 +68,7 @@ rand.workspace = true
[features]
default = []
js-tracer = [
"reth-node-builder/js-tracer"
"reth-node-builder/js-tracer",
]
test-utils = [
"reth-node-builder/test-utils",

View File

@ -53,18 +53,18 @@ alloy-consensus = { workspace = true, features = ["serde", "arbitrary"] }
default = ["std"]
alloy-compat = ["dep:alloy-network", "dep:alloy-serde", "dep:alloy-rpc-types"]
std = [
"alloy-consensus/std",
"alloy-primitives/std",
"alloy-rlp/std",
"reth-primitives-traits/std",
"reth-zstd-compressors?/std",
"serde/std",
"alloy-eips/std",
"derive_more/std",
"secp256k1?/std",
"once_cell/std",
"revm-primitives/std",
"alloy-serde?/std"
"alloy-consensus/std",
"alloy-primitives/std",
"alloy-rlp/std",
"reth-primitives-traits/std",
"reth-zstd-compressors?/std",
"serde/std",
"alloy-eips/std",
"derive_more/std",
"secp256k1?/std",
"once_cell/std",
"revm-primitives/std",
"alloy-serde?/std",
]
reth-codec = [
"std",
@ -73,20 +73,20 @@ reth-codec = [
"dep:reth-zstd-compressors",
]
arbitrary = [
"dep:arbitrary",
"dep:rand",
"dep:secp256k1",
"alloy-consensus/arbitrary",
"alloy-primitives/arbitrary",
"reth-codecs?/arbitrary",
"reth-primitives-traits/arbitrary",
"alloy-eips/arbitrary",
"revm-primitives/arbitrary",
"alloy-rpc-types?/arbitrary",
"alloy-serde?/arbitrary"
"dep:arbitrary",
"dep:rand",
"dep:secp256k1",
"alloy-consensus/arbitrary",
"alloy-primitives/arbitrary",
"reth-codecs?/arbitrary",
"reth-primitives-traits/arbitrary",
"alloy-eips/arbitrary",
"revm-primitives/arbitrary",
"alloy-rpc-types?/arbitrary",
"alloy-serde?/arbitrary",
]
serde-bincode-compat = [
"alloy-consensus/serde-bincode-compat",
"alloy-eips/serde-bincode-compat",
"reth-primitives-traits/serde-bincode-compat"
"alloy-consensus/serde-bincode-compat",
"alloy-eips/serde-bincode-compat",
"reth-primitives-traits/serde-bincode-compat",
]