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:
@ -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",
|
||||
]
|
||||
|
||||
@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user