[dependencies.crossbeam-epoch]
default-features = false
version = "0.9.17"
[dependencies.crossbeam-utils]
default-features = false
version = "0.8.18"
[dev-dependencies.rand]
version = "0.8"
[features]
default = ["std"]
std = ["crossbeam-epoch/std", "crossbeam-utils/std"]
[lib]
name = "crossbeam_deque"
path = "src/lib.rs"
[lints.clippy.declare_interior_mutable_const]
level = "allow"
priority = 1
[lints.clippy.lint_groups_priority]
level = "allow"
priority = 1
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(crossbeam_loom)", "cfg(crossbeam_sanitize)"]
level = "warn"
priority = 0
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "concurrency", "data-structures"]
description = "Concurrent work-stealing deque"
edition = "2021"
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque"
keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
license = "MIT OR Apache-2.0"
name = "crossbeam-deque"
readme = "README.md"
repository = "https://github.com/crossbeam-rs/crossbeam"
rust-version = "1.61"
version = "0.8.6"
[[test]]
name = "fifo"
path = "tests/fifo.rs"
[[test]]
name = "injector"
path = "tests/injector.rs"
[[test]]
name = "lifo"
path = "tests/lifo.rs"
[[test]]
name = "steal"
path = "tests/steal.rs"