Cargo Features

[dependencies]
alloy-eip7702 = { version = "0.1.0", default-features = false, features = ["std", "serde", "k256", "arbitrary"] }
default = std

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

std default arbitrary?

Enables std of alloy-primitives, alloy-rlp, 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 serde, serde of alloy-primitives

k256

Enables k256 of alloy-primitives and k256

for signed authorization list arbitrary

arbitrary = std

Enables arbitrary and rand, arbitrary of alloy-primitives