Cargo Features
[dependencies]
potential_utf = { version = "0.1.4", default-features = false, features = ["alloc", "databake", "serde", "writeable", "zerovec"] }
- default = alloc
-
The
allocfeature is set by default wheneverpotential_utfis added withoutsomewhere in the dependency tree.default-features = false - alloc default
-
Enables alloc of optional serde_core, writeable, and optional zerovec
serde_core:
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.
- databake
-
Enables databake
- serde
-
Enables serde_core
- writeable alloc
-
Enables writeable
- zerovec
-
Enables zerovec
potential_utf has 6 features without comments.