Cargo Features
[dependencies]
alloy-rlp = { version = "0.3.15", default-features = false, features = ["std", "derive", "core-net", "core-error", "arrayvec"] }
- default = std
-
The
stdfeature is set by default wheneveralloy-rlpis added withoutsomewhere in the dependency tree.default-features = false - std default
- derive
-
Enables alloy-rlp-derive
- core-net
-
Enables
core::net::implementations always instead of conditionally throughstd. Requires Rust 1.77 or newer. - core-error
-
Enables
core::error::Errorimplementations always instead of conditionally throughstd. Requires Rust 1.81 or newer. - arrayvec
-
Enables arrayvec
Affects
encode::encode_fixed_size…