Cargo Features
[dependencies]
ufotofu_queues = { version = "0.5.0", default-features = false, features = ["std", "alloc", "nightly"] }
- default = std
-
The
std
feature is set by default wheneverufotofu_queues
is added without
somewhere in the dependency tree.default-features = false - std default
-
Provide functionality that relies on the std library. Enabled by default.
- alloc
-
Provide functionality that relies on dynamic memory allocation. Enabling
std
automatically enables allalloc
features. - nightly
-
Enable functionality that requires nightly Rust, such as allocator-aware APIs.
Affects
fixed::Fixed
,fixed::DataDebugger
…