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

@ -16,11 +16,7 @@ reth-network-peers.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
tokio.workspace = true
tokio-stream.workspace = true

View File

@ -21,4 +21,4 @@ alloy-consensus.workspace = true
eyre.workspace = true
[features]
optimism = []
optimism = []

View File

@ -5,7 +5,6 @@ publish = false
edition.workspace = true
license.workspace = true
[dependencies]
reth.workspace = true
reth-chainspec.workspace = true

View File

@ -5,7 +5,6 @@ publish = false
edition.workspace = true
license.workspace = true
[dependencies]
reth.workspace = true
reth-node-ethereum.workspace = true

View File

@ -5,7 +5,6 @@ publish = false
edition.workspace = true
license.workspace = true
[dependencies]
tokio = { workspace = true, features = ["full"] }
futures.workspace = true

View File

@ -5,7 +5,6 @@ publish = false
edition.workspace = true
license.workspace = true
[dependencies]
reth-chainspec.workspace = true
reth-db.workspace = true
@ -19,5 +18,4 @@ alloy-consensus.workspace = true
alloy-rpc-types-eth.workspace = true
alloy-primitives.workspace = true
eyre.workspace = true

View File

@ -8,11 +8,7 @@ license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
tokio.workspace = true
reth-network.workspace = true
reth-chainspec.workspace = true