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 whenever ufotofu_queues is added without default-features = false somewhere in the dependency tree.

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 all alloc features.

nightly

Enable functionality that requires nightly Rust, such as allocator-aware APIs.

Affects fixed::Fixed, fixed::DataDebugger