Cargo Features

[dependencies]
page-turner = { version = "1.0.0", default-features = false, features = ["local", "mt", "mutable", "dynamic"] }
default = mt

The mt feature is set by default whenever page-turner is added without default-features = false somewhere in the dependency tree.

local mutable?

Affects page-turner::local

mt default dynamic?

Affects page-turner::mt, page-turner::prelude

mutable = local

Affects local::mutable

dynamic = async-trait, mt

Affects mt::dynamic

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.

async-trait dynamic?