RA

Rayon

Data-parallelism library for Rust — parallel iterators that use all CPU cores with no unsafe code.

Rust utility free Open Source since 2015

Rayon turns .iter() into .par_iter() — that single change saturates all available CPU cores using a work-stealing thread pool. It handles nested parallelism automatically and composes with the standard iterator API. Ideal for CPU-bound batch processing in data pipelines and scientific computing.

// related libraries

Async runtime for Rust — event-driven, non-blocking I/O, task scheduling, and networking …

async 2016 open source

Serialization and deserialization framework for Rust — derive macros generate blazing-fast …

serialization 2014 open source

// tags

parallelconcurrencyperformanceiteratorsrust
Something wrong? Edit this entry on GitHub.
✏ Edit on GitHub