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

@ -33,23 +33,23 @@ arbitrary = { workspace = true, features = ["derive"] }
[features]
default = ["std", "serde", "rustc-hash"]
arbitrary = [
"dep:arbitrary",
"alloy-chains/arbitrary",
"alloy-primitives/arbitrary",
"alloy-eip2124/arbitrary"
"dep:arbitrary",
"alloy-chains/arbitrary",
"alloy-primitives/arbitrary",
"alloy-eip2124/arbitrary",
]
serde = [
"dep:serde",
"alloy-chains/serde",
"alloy-primitives/serde",
"alloy-eip2124/serde"
"dep:serde",
"alloy-chains/serde",
"alloy-primitives/serde",
"alloy-eip2124/serde",
]
std = [
"alloy-chains/std",
"alloy-primitives/std",
"rustc-hash/std",
"serde?/std",
"alloy-eip2124/std",
"once_cell/std"
"alloy-chains/std",
"alloy-primitives/std",
"rustc-hash/std",
"serde?/std",
"alloy-eip2124/std",
"once_cell/std",
]
rustc-hash = ["dep:rustc-hash"]