Cargo Features

[dependencies]
par-dfs = { version = "0.0.7", default-features = false, features = ["full", "rayon", "sync", "async"] }
default = sync

The sync feature is set by default whenever par-dfs is added without default-features = false somewhere in the dependency tree.

full = async, rayon, sync
rayon full?

Enables rayon

Affects sync::par

sync default full?

Affects par-dfs::sync, utils::test.sync

async full?

Enables async-trait, futures, and pin-project

Affects par-dfs::r#async, utils::test.r#async