Cargo Features

[dependencies]
aoko = { version = "0.3.0-alpha.30", default-features = false, features = ["std", "full", "async", "paral"] }
default = std

Default to using the features

std default full? = minstant

Enables std of no-std-compat2

no-std-compat2:

This feature pulls in the entire standard library and overrides all other features. This effectively bypasses this crate completely. This is here to avoid needing feature gates: Just forward your optional std feature to here, we handle the rest.

Affects aoko::standard

full = async, paral, std
async full? = tokio

Affects standard::asynchronies

paral full? = rayon

Affects standard::parallelisms

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.

minstant std
rayon paral?
tokio async?