Cargo Features
[dependencies]
cu-bincode = { version = "2.0.2", default-features = false, features = ["std", "alloc", "derive", "serde"] }
- default = derive, std
-
These default features are set whenever
cu-bincodeis added withoutsomewhere in the dependency tree.default-features = false - std default = alloc
-
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.Affects
de_owned::decode_from_std_read,ser::encode_into_std_write… - alloc std
-
Enables alloc of optional serde
serde:
Provide impls for types in the Rust core allocation and collections library including String, Box<T>, Vec<T>, and Cow<T>. This is a subset of std but may be enabled without depending on all of std.
Affects
ser::encode_to_vec,cu-bincode::spec… - derive default
-
Enables cu-bincode-derive
Affects
cu-bincode::spec…