Ross ROSS = Recommend OSS · open-source software intelligence for agents

rayon-rs/rayon

Rayon: A data parallelism library for Rust observed · 2026-08-28

github.com/rayon-rs/rayon · Rust · Apache-2.0 (permissive) 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

Full methodology

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

Member repositories

RepositoryRoleHealth v2
rayon-rs/rayonmain74

For agents

markdown · JSON · MCP: product_card(name="rayon-rs/rayon")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem