Cargo Features
[dependencies]
compact_arena = { version = "0.5.0", default-features = false, features = ["uninit", "alloc"] }
- uninit
-
This feature is deprecated and will be removed in a future version. As of 0.4.0, all Tiny- and NanoArenas use
MaybeUninit
to manage their data. - default = alloc
-
The
alloc
feature is set by default whenevercompact_arena
is added without
somewhere in the dependency tree.default-features = false - alloc default
-
Affects
compact_arena::SmallArena
…