mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
add format checker to .toml (#13968)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -20,4 +20,4 @@ eyre.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
clap.workspace = true
|
||||
reth-cli-commands.workspace = true
|
||||
reth-cli-commands.workspace = true
|
||||
|
||||
@ -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",
|
||||
]
|
||||
|
||||
@ -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",
|
||||
]
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user