commit | 925586c02a7faf58a9629889dc22fdcffbe291e4 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Thu Feb 01 23:25:56 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Feb 01 23:25:56 2024 +0000 |
tree | 5a8ef7749b2793766d97ab82661b46f856ff7df4 | |
parent | f56f35bc218616237b290b2de82ff3a341959e58 [diff] | |
parent | ac38886e152cf4d7bbd2ba6922df98e3f4f5d646 [diff] |
Upgrade crossbeam-queue to 0.3.11 am: 38d6b2b498 am: ac38886e15 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/crossbeam-queue/+/2943925 Change-Id: I43bc28227a3fae03cf0ffa758d89a691fa62ae63 Signed-off-by: Automerger Merge Worker <[email protected]>
This crate provides concurrent queues that can be shared among threads:
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.Everything in this crate can be used in no_std
environments, provided that alloc
feature is enabled.
Add this to your Cargo.toml
:
[dependencies] crossbeam-queue = "0.3"
Crossbeam Queue supports stable Rust releases going back at least six months, and every time the minimum supported Rust version is increased, a new minor version is released. Currently, the minimum supported Rust version is 1.60.
Licensed under either of
at your option.
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.