Cargo Features
[dependencies]
par-core = { version = "1.0.3", default-features = false, features = ["parallel", "rayon", "chili"] }
- default = parallel
-
The
parallel
feature is set by default wheneverpar-core
is added without
somewhere in the dependency tree.default-features = false - parallel default chili? rayon?
-
Make it really parallel
- rayon = parallel
-
Use rayon for parallel execution
Enables rayon
- chili = parallel
-
Use chili for parallel execution
Enables chili
Affects
par-core::Scope
…