commit | df73bc297e7147b86065690b14288a56434f03f6 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Thu Dec 08 15:38:25 2022 +0100 |
committer | Jeff Vander Stoep <[email protected]> | Thu Dec 08 15:39:35 2022 +0100 |
tree | 0d4f327d19a58774fa7ecda50b5329aa90b34787 | |
parent | 71e319880a4c9eeadc05227d7b3cea86ce9f4479 [diff] |
Upgrade crossbeam-queue to 0.3.8 This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/crossbeam-queue For more info, check https://cs.android.com/android/platform/superproject/+/master:tools/external_updater/README.md Test: TreeHugger Change-Id: Id45bf58bd63fec86312b3377b4c6221b8a0e27ec
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.