Cargo Features
[dependencies]
ser-write = { version = "0.3.0", default-features = false, features = ["std", "alloc", "arrayvec", "heapless", "smallvec", "tinyvec"] }
- default = std
-
The
std
feature is set by default wheneverser-write
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of optional tinyvec
tinyvec:
Provide things that require Rust's
std
module - alloc smallvec?
-
Enables alloc of optional tinyvec
tinyvec:
Provide things that utilize the
alloc
crate, namelyTinyVec
. - arrayvec
-
Enables arrayvec
- heapless
-
Enables heapless
- smallvec = alloc
-
Enables smallvec
- tinyvec
-
Enables tinyvec
SerWrite has 7 features without comments.