Cargo Features
[dependencies]
zone-alloc = { version = "0.4.1", default-features = false, features = ["std", "may-dangle"] }
- default = std
-
The
std
feature is set by default wheneverzone-alloc
is added without
somewhere in the dependency tree.default-features = false - std default
-
Depend on the entire Rust standard library.
- may-dangle
-
Implement Drop for element reference with the "may_dangle" attribute.