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

@ -10,7 +10,6 @@ repository.workspace = true
[lints]
workspace = true
[dependencies]
# reth
reth-cli-runner.workspace = true
@ -22,6 +21,3 @@ clap.workspace = true
shellexpand.workspace = true
eyre.workspace = true
serde_json.workspace = true

View File

@ -68,11 +68,7 @@ serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
backon.workspace = true
secp256k1 = { workspace = true, features = [
"global-context",
"rand-std",
"recovery",
] }
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
# io
fdlimit.workspace = true
@ -81,9 +77,7 @@ toml = { workspace = true, features = ["display"] }
# tui
comfy-table = "7.0"
crossterm = "0.28.0"
ratatui = { version = "0.28", default-features = false, features = [
"crossterm",
] }
ratatui = { version = "0.28", default-features = false, features = ["crossterm"] }
# reth test-vectors
proptest = { workspace = true, optional = true }