rayon-rs/rayon
Rayon: A data parallelism library for Rust observed · 2026-08-28
Health v2 · maintenance only
74/100
- Activity 92
- Release rhythm 35
- Longevity 100
Flags: no_releases
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4353
- days_rel: n/a
- days_push: 49
- n_releases_24m: 0
Adoption not part of the score
13269 stars · 604 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded
Rayon is a data-parallelism library for Rust that converts sequential computations into parallel ones with minimal code changes, typically by swapping iter() for par_iter(). It uses work-stealing scheduling and guarantees data-race freedom through Rust's type system.
Use cases
- parallelize iterator pipelines in Rust
- speed up CPU-bound data processing
- run recursive divide-and-conquer tasks in parallel
- create custom thread pools for parallel workloads
- parallelize collection map/reduce operations safely
When to choose
- you want near-effortless data parallelism in Rust
- you need compile-time data-race guarantees
- you want dynamic work-stealing load balancing
- your workload is CPU-bound and parallelizable
When to avoid
- your workload is I/O-bound rather than CPU-bound
- you need async task concurrency rather than data parallelism
- you require fine-grained control over thread scheduling
- you target a Rust version older than 1.85
Facets
library · maturity stable
concurrency developer-tools performance rust cross-platform data-parallelism parallel-iterators work-stealing thread-pool data-race-freedom algorithms
2 sources
- readme: https://github.com/rayon-rs/rayon · fetched 2026-08-28 · 37e6eaed0cc9
- registry_crates: https://crates.io/api/v1/crates/rayon · fetched 2026-08-29 · 9323bd9628d6
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| rayon-rs/rayon | main | 74 |
For agents
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem