[dependencies.crossbeam-utils]
default-features = false
version = "0.8.18"
[dev-dependencies.rand]
version = "0.8"
[features]
alloc = []
default = ["std"]
nightly = ["crossbeam-utils/nightly"]
std = ["alloc", "crossbeam-utils/std"]
[lib]
name = "crossbeam_queue"
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 = ["concurrency", "data-structures", "no-std"]
description = "Concurrent queues"
edition = "2021"
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue"
keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
license = "MIT OR Apache-2.0"
name = "crossbeam-queue"
readme = "README.md"
repository = "https://github.com/crossbeam-rs/crossbeam"
rust-version = "1.60"
version = "0.3.12"
[[test]]
name = "array_queue"
path = "tests/array_queue.rs"
[[test]]
name = "seg_queue"
path = "tests/seg_queue.rs"