Cargo Features
[dependencies]
emplacable = { version = "0.1.0-alpha.13", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default wheneveremplacable
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
- alloc std
-
Affects
emplacable::box_new
,emplacable::box_new_with
,emplacable::box_pin
,emplacable::box_pin_with
,emplacable::rc_new
,emplacable::rc_new_with
,emplacable::rc_pin
,emplacable::rc_pin_with
,emplacable::arc_new
,emplacable::arc_new_with
,emplacable::arc_pin
,emplacable::arc_pin_with
…