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 whenever alloy-consensus-any is added without default-features = false somewhere in the dependency tree.

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.