Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 23-Nov-2023 | - | 2,104 | 1,043 | ||
tests/ | 23-Nov-2023 | - | 1,241 | 1,027 | ||
.cargo_vcs_info.json | D | 23-Nov-2023 | 74 | 6 | 5 | |
Android.bp | D | 23-Nov-2023 | 2.1 KiB | 69 | 64 | |
CHANGELOG.md | D | 23-Nov-2023 | 2.2 KiB | 102 | 64 | |
Cargo.toml | D | 23-Nov-2023 | 1.4 KiB | 44 | 39 | |
Cargo.toml.orig | D | 23-Nov-2023 | 1.1 KiB | 43 | 36 | |
LICENSE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 23-Nov-2023 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 23-Nov-2023 | 1.1 KiB | 28 | 23 | |
METADATA | D | 23-Nov-2023 | 399 | 20 | 19 | |
MODULE_LICENSE_APACHE2 | D | 23-Nov-2023 | 0 | |||
OWNERS | D | 23-Nov-2023 | 40 | 2 | 1 | |
README.md | D | 23-Nov-2023 | 1.6 KiB | 47 | 33 |
README.md
1# Crossbeam Deque 2 3[![Build Status](https://github.com/crossbeam-rs/crossbeam/workflows/CI/badge.svg)]( 4https://github.com/crossbeam-rs/crossbeam/actions) 5[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)]( 6https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque#license) 7[![Cargo](https://img.shields.io/crates/v/crossbeam-deque.svg)]( 8https://crates.io/crates/crossbeam-deque) 9[![Documentation](https://docs.rs/crossbeam-deque/badge.svg)]( 10https://docs.rs/crossbeam-deque) 11[![Rust 1.36+](https://img.shields.io/badge/rust-1.36+-lightgray.svg)]( 12https://www.rust-lang.org) 13[![chat](https://img.shields.io/discord/569610676205781012.svg?logo=discord)](https://discord.gg/BBYwKq) 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.7" 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.36. 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