Cargo Features

[dependencies]
alloy-trie = { version = "0.4.0", default-features = false, features = ["std", "serde", "arbitrary"] }
default = std

The std feature is set by default whenever alloy-trie is added without default-features = false somewhere in the dependency tree.

std default arbitrary?

Enables std of alloy-primitives, alloy-rlp, nybbles, optional serde, and tracing

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 serde, serde of alloy-primitives, hashbrown, and nybbles

arbitrary = std

Enables arbitrary, derive_arbitrary, proptest, and proptest-derive, arbitrary of alloy-primitives

alloy-trie has 4 features without comments.