Cargo Features

[dependencies]
mini-io-queue = { version = "0.2.0", default-features = false, features = ["std", "alloc", "asyncio", "blocking", "nonblocking", "heap-buffer", "stack-buffer", "std-io"] }
default = blocking, heap-buffer, nonblocking, std-io

These default features are set whenever mini-io-queue is added without default-features = false somewhere in the dependency tree.

std blocking std-io
alloc asyncio? heap-buffer nonblocking
asyncio = alloc, futures

Affects mini-io-queue::asyncio

blocking default = std

Affects mini-io-queue::blocking

nonblocking default = alloc

Affects mini-io-queue::nonblocking

heap-buffer default = alloc
stack-buffer = array-init
std-io default = std

Enables std of futures

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

array-init stack-buffer?
futures asyncio? std-io