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

@ -49,9 +49,9 @@ reth-testing-utils.workspace = true
[features]
test-utils = [
"reth-consensus/test-utils",
"reth-network-p2p/test-utils",
"reth-primitives-traits/test-utils",
"reth-provider/test-utils",
"reth-stages-types/test-utils"
"reth-consensus/test-utils",
"reth-network-p2p/test-utils",
"reth-primitives-traits/test-utils",
"reth-provider/test-utils",
"reth-stages-types/test-utils",
]

View File

@ -25,9 +25,7 @@ reth-exex.workspace = true
reth-fs-util.workspace = true
reth-network-p2p.workspace = true
reth-primitives = { workspace = true, features = ["secp256k1"] }
reth-primitives-traits = { workspace = true, features = [
"serde-bincode-compat",
] }
reth-primitives-traits = { workspace = true, features = ["serde-bincode-compat"] }
reth-provider.workspace = true
reth-execution-types.workspace = true
reth-prune.workspace = true
@ -59,10 +57,7 @@ num-traits = "0.2.15"
tempfile = { workspace = true, optional = true }
bincode.workspace = true
blake3.workspace = true
reqwest = { workspace = true, default-features = false, features = [
"rustls-tls-native-roots",
"blocking"
] }
reqwest = { workspace = true, default-features = false, features = ["rustls-tls-native-roots", "blocking"] }
serde = { workspace = true, features = ["derive"] }
[dev-dependencies]
@ -96,11 +91,7 @@ tempfile.workspace = true
criterion = { workspace = true, features = ["async_tokio"] }
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
pprof = { workspace = true, features = [
"flamegraph",
"frame-pointer",
"criterion",
] }
pprof = { workspace = true, features = ["flamegraph", "frame-pointer", "criterion"] }
[features]
test-utils = [