Cargo Features
[dependencies]
alloy-consensus-any = { version = "0.12.4", default-features = false, features = ["std", "serde", "arbitrary"] }
- default = std
-
The
std
feature is set by default wheneveralloy-consensus-any
is added without
somewhere in the dependency tree.default-features = false - std default arbitrary?
-
Enables std of alloy-consensus, alloy-eips, alloy-primitives, alloy-rlp, optional alloy-serde, and optional serde
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library. - serde
-
Enables alloy-consensus, alloy-serde and serde, serde of alloy-eips and alloy-primitives
- arbitrary = std
-
Enables arbitrary, arbitrary of alloy-eips
alloy-consensus-any has 4 features without comments.