Cargo Features
[dependencies]
alloy-eip2930 = { version = "0.1.0", default-features = false, features = ["std", "serde", "arbitrary"] }
- default = std
-
The
std
feature is set by default wheneveralloy-eip2930
is added without
somewhere in the dependency tree.default-features = false - 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
- arbitrary = std
-
Enables arbitrary and rand, arbitrary of alloy-primitives
alloy-eip2930 has 4 features without comments.