Cargo Features
[dependencies]
unempty = { version = "0.1.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverunempty
is added without
somewhere in the dependency tree.default-features = false - std default
-
This feature flag is currently required to compile this library: it does not support a
no-std
environment.However, this feature flag exists to provide the capability for future support for a
no-std
environment without a major version bump.