crossbeam

Tools for concurrent programming in Rust

Github星跟蹤圖

Crossbeam

Build Status
License
Cargo
Documentation
Rust 1.28+
chat

This crate provides a set of tools for concurrent programming:

Atomics

  • AtomicCell, a thread-safe mutable memory location.(no_std)
  • AtomicConsume, for reading from primitive atomic types with "consume" ordering.(no_std)

Data structures

  • deque, work-stealing deques for building task schedulers.
  • ArrayQueue, a bounded MPMC queue that allocates a fixed-capacity buffer on construction.
  • SegQueue, an unbounded MPMC queue that allocates small buffers, segments, on demand.

Memory management

  • epoch, an epoch-based garbage collector.(alloc)

Thread synchronization

  • channel, multi-producer multi-consumer channels for message passing.
  • Parker, a thread parking primitive.
  • ShardedLock, a sharded reader-writer lock with fast concurrent reads.
  • WaitGroup, for synchronizing the beginning or end of some computation.

Utilities

  • Backoff, for exponential backoff in spin loops.(no_std)
  • CachePadded, for padding and aligning a value to the length of a cache line.(no_std)
  • scope, for spawning threads that borrow local variables from the stack.

Features marked with (no_std) can be used in no_std environments.
Features marked with (alloc) can be used in no_std environments, but only if alloc
and nightly are enabled.

Crates

The main crossbeam crate just re-exports tools from
smaller subcrates:

  • crossbeam-channel
    provides multi-producer multi-consumer channels for message passing.
  • crossbeam-deque
    provides work-stealing deques, which are primarily intended for building task schedulers.
  • crossbeam-epoch
    provides epoch-based garbage collection for building concurrent data structures.
  • crossbeam-queue
    provides concurrent queues that can be shared among threads.
  • crossbeam-utils
    provides atomics, synchronization primitives, scoped threads, and other utilities.

There is one more experimental subcrate that is not yet included in crossbeam:

Usage

Add this to your Cargo.toml:

[dependencies]
crossbeam = "0.7"

Next, add this to your crate:

extern crate crossbeam;

Compatibility

The minimum supported Rust version is 1.28. Any change to this is considered a breaking change.

Contributing

Crossbeam welcomes contribution from everyone in the form of suggestions, bug reports,
pull requests, and feedback. ?

If you need ideas for contribution, there are several ways to get started:

RFCs

We also have the RFCs repository for more
high-level discussion, which is the place where we brainstorm ideas and propose
substantial changes to Crossbeam.

You are welcome to participate in any open
issues
or
pull requests.

Learning resources

If you'd like to learn more about concurrency and non-blocking data structures, there's a
list of learning resources in our wiki,
which includes relevant blog posts, papers, videos, and other similar projects.

Another good place to visit is merged RFCs.
They contain elaborate descriptions and rationale for features we've introduced to
Crossbeam, but keep in mind that some of the written information is now out of date.

Conduct

The Crossbeam project adheres to the
Rust Code of Conduct.
This describes the minimum behavior expected from all contributors.

License

Licensed under either of

at your option.

Some Crossbeam subcrates have additional licensing notices.
Take a look at other readme files in this repository for more information.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.

主要指標

概覽
名稱與所有者crossbeam-rs/crossbeam
主編程語言Rust
編程語言Rust (語言數: 4)
平台
許可證Apache License 2.0
所有者活动
創建於2015-05-13 18:10:54
推送於2025-04-08 22:03:51
最后一次提交2025-04-09 06:30:16
發布數160
最新版本名稱crossbeam-channel-0.5.15 (發布於 )
第一版名稱0.2.10 (發布於 2016-08-10 22:57:55)
用户参与
星數7.8k
關注者數78
派生數490
提交數2.3k
已啟用問題?
問題數452
打開的問題數113
拉請求數593
打開的拉請求數39
關閉的拉請求數98
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?