Cargo Features
[dependencies]
hex-buffer-serde = { version = "0.4.0", default-features = false, features = ["alloc", "const_len"] }
- default = alloc
-
The
alloc
feature is set by default wheneverhex-buffer-serde
is added without
somewhere in the dependency tree.default-features = false - alloc default
-
Enables types that depend on the
alloc
crate:Hex
andHexForm
.Private dependencies (not exposed in the public API).
Public dependencies (present in the public API).
- const_len
-
Enables types that depend on const generics:
ConstHex
andConstHexForm
.