Cargo Features

[dependencies]
alloy-chains = { version = "0.1.46", 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 alloy-primitives, 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, serde of alloy-primitives

rlp

Enables alloy-rlp, rlp of alloy-primitives

schema = std

Enables schemars

arbitrary

Enables arbitrary and proptest, arbitrary of alloy-primitives