gecko-dev/third_party/rust/crossbeam-queue
Bastien Orivel f8a37fc9d4 Bug 1568083 - Update rayon in the style system. r=emilio
As a bonus this also removes one version of crossbeam-utils

This cherry-picks Servo PR #23630.


--HG--
rename : third_party/rust/crossbeam-deque-0.2.0/LICENSE-APACHE => third_party/rust/crossbeam-queue/LICENSE-APACHE
2019-07-23 02:18:33 +02:00
..
src
tests
.cargo-checksum.json
Cargo.toml
CHANGELOG.md
LICENSE-APACHE
LICENSE-MIT
LICENSE-THIRD-PARTY
README.md

Crossbeam Queue

Build Status License Cargo Documentation Rust 1.26+

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.

Usage

Add this to your Cargo.toml:

[dependencies]
crossbeam-queue = "0.1"

Next, add this to your crate:

extern crate crossbeam_queue;

Compatibility

The minimum supported Rust version is 1.26.

License

Licensed under either of

at your option.

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.

Third party software

This product includes copies and modifications of software developed by third parties:

See the source code files for more details.

Copies of third party licenses can be found in LICENSE-THIRD-PARTY.