Cargo Features

[dependencies]
alloy-chains = { version = "0.1.18", default-features = false, features = ["std", "serde", "rlp", "schema", "arbitrary"] }
default = std

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

std default schema?

Enables std of optional serde and strum

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

rlp

Enables alloy-rlp

schema = std

Enables schemars

arbitrary

Enables arbitrary and proptest