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

crossbeam-rs/crossbeam

Tools for concurrent programming in Rust observed · 2026-08-28

github.com/crossbeam-rs/crossbeam · Rust · Apache-2.0 (permissive) observed · 2026-08-28

Health v2 · maintenance only

96/100

  • Activity 97
  • Release rhythm 92
  • Longevity 100
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: 0.0
  • age_days: 4130
  • days_rel: 58
  • days_push: 22
  • n_releases_24m: 11

Full methodology

Adoption not part of the score

8558 stars · 573 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded

Crossbeam is a Rust library providing tools for concurrent programming, including lock-free data structures, MPMC channels, epoch-based garbage collection, and scoped thread spawning. It is widely used as a foundation for building task schedulers and parallel systems in Rust.

Use cases

  • pass messages between threads with mpmc channels
  • build a work-stealing task scheduler
  • spawn threads that borrow stack variables
  • implement lock-free queues in rust
  • synchronize thread start and end with wait groups
  • avoid false sharing with cache line padding

When to choose

  • you need battle-tested concurrent data structures or channels in Rust
  • you want scoped threads that can borrow local variables safely
  • you are building a scheduler or parallel runtime needing work-stealing deques

When to avoid

  • you only need simple async concurrency, where tokio or std futures may suffice
  • you need distributed or cross-process communication rather than in-process threading
  • you want a batteries-included async runtime rather than low-level synchronization primitives

Facets

library · maturity stable

concurrency developer-tools developer-tools performance rust cross-platform lock-free channels work-stealing epoch-gc synchronization threads no-std algorithms

2 sources

Member repositories

RepositoryRoleHealth v2
crossbeam-rs/crossbeammain96

For agents

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

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