commit | 25317864c67db68dc20cbfbf3ea63c97efd228e7 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Fri Dec 09 02:58:10 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Dec 09 02:58:10 2022 +0000 |
tree | 0d4f327d19a58774fa7ecda50b5329aa90b34787 | |
parent | dc6b0a6e636339766c962643024912f974597059 [diff] | |
parent | d745fef21b5c8a5eea9e65ac02c7c8a6e745db7e [diff] |
Upgrade crossbeam-queue to 0.3.8 am: df73bc297e am: fc3c731e71 am: d745fef21b Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/crossbeam-queue/+/2335443 Change-Id: Ia88d4b3bdb876af86d1b235607fcb27dbf33c95f 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.38.
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.