| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| src/ | 04-Jul-2025 | - | 2,324 | 1,094 | ||
| tests/ | 04-Jul-2025 | - | 1,323 | 1,103 | ||
| .android-checksum.json | D | 04-Jul-2025 | 1.4 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 993 | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 3.1 KiB | 140 | 132 | |
| CHANGELOG.md | D | 04-Jul-2025 | 3.7 KiB | 142 | 85 | |
| Cargo.toml | D | 04-Jul-2025 | 1.8 KiB | 93 | 79 | |
| LICENSE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
| LICENSE-APACHE | D | 04-Jul-2025 | 10.6 KiB | 202 | 169 | |
| METADATA | D | 04-Jul-2025 | 399 | 18 | 17 | |
| MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1.6 KiB | 47 | 33 | |
| TEST_MAPPING | D | 04-Jul-2025 | 957 | 48 | 47 | |
| cargo_embargo.json | D | 04-Jul-2025 | 46 | 4 | 4 |
README.md
1# Crossbeam Deque 2 3[]( 4https://github.com/crossbeam-rs/crossbeam/actions) 5[]( 6https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque#license) 7[]( 8https://crates.io/crates/crossbeam-deque) 9[]( 10https://docs.rs/crossbeam-deque) 11[]( 12https://www.rust-lang.org) 13[](https://discord.com/invite/JXYwgWZ) 14 15This crate provides work-stealing deques, which are primarily intended for 16building task schedulers. 17 18## Usage 19 20Add this to your `Cargo.toml`: 21 22```toml 23[dependencies] 24crossbeam-deque = "0.8" 25``` 26 27## Compatibility 28 29Crossbeam Deque supports stable Rust releases going back at least six months, 30and every time the minimum supported Rust version is increased, a new minor 31version is released. Currently, the minimum supported Rust version is 1.61. 32 33## License 34 35Licensed under either of 36 37 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) 38 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) 39 40at your option. 41 42#### Contribution 43 44Unless you explicitly state otherwise, any contribution intentionally submitted 45for inclusion in the work by you, as defined in the Apache-2.0 license, shall be 46dual licensed as above, without any additional terms or conditions. 47