Cargo Features
[dependencies]
out = { version = "8.0.0", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default wheneverout
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
- alloc std
-
Affects
out::iter
,slice::max_by_cached_key
,slice::min_by_cached_key
…