Cargo Features

[dependencies]
zone-alloc = { version = "0.4.0", default-features = false, features = ["std", "may-dangle"] }
default = std

The std feature is set by default whenever zone-alloc is added without default-features = false somewhere in the dependency tree.

std default

Depend on the entire Rust standard library.

may-dangle

Implement Drop for element reference with the "may_dangle" attribute.