Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
src/ | H | 03-May-2022 | - | 2,017 | 999 | |
tests/ | H | 03-May-2022 | - | 1,255 | 1,037 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 22-Feb-2020 | 74 | 6 | 5 | |
CHANGELOG.md | H A D | 22-Feb-2020 | 2.1 KiB | 96 | 60 | |
Cargo.toml | H A D | 22-Feb-2020 | 1.2 KiB | 35 | 31 | |
Cargo.toml.orig-cargo | H A D | 22-Feb-2020 | 857 | 31 | 26 | |
LICENSE-APACHE | H A D | 23-Apr-2019 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | H A D | 11-Jun-2019 | 1.1 KiB | 28 | 23 | |
README.md | H A D | 22-Feb-2020 | 1.5 KiB | 51 | 35 |
README.md
1# Crossbeam Deque 2 3[![Build Status](https://travis-ci.org/crossbeam-rs/crossbeam.svg?branch=master)]( 4https://travis-ci.org/crossbeam-rs/crossbeam) 5[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)]( 6https://github.com/crossbeam-rs/crossbeam-deque) 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.28+](https://img.shields.io/badge/rust-1.28+-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 27Next, add this to your crate: 28 29```rust 30extern crate crossbeam_deque; 31``` 32 33## Compatibility 34 35The minimum supported Rust version is 1.28. Any change to this is considered a breaking change. 36 37## License 38 39Licensed under either of 40 41 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) 42 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) 43 44at your option. 45 46#### Contribution 47 48Unless you explicitly state otherwise, any contribution intentionally submitted 49for inclusion in the work by you, as defined in the Apache-2.0 license, shall be 50dual licensed as above, without any additional terms or conditions. 51