• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-2,017999

tests/H03-May-2022-1,2551,037

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D22-Feb-202074 65

CHANGELOG.mdH A D22-Feb-20202.1 KiB9660

Cargo.tomlH A D22-Feb-20201.2 KiB3531

Cargo.toml.orig-cargoH A D22-Feb-2020857 3126

LICENSE-APACHEH A D23-Apr-201910.6 KiB202169

LICENSE-MITH A D11-Jun-20191.1 KiB2823

README.mdH A D22-Feb-20201.5 KiB5135

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