[package]
edition = "2024"
name = "nblf-queue"
version = "0.1.0"
authors = ["Louis Meller louis.meller@icloud.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atomic, wait-free MPMC queues based on the nblfq algorithm"
readme = "README.md"
keywords = [
"queue",
"mpmc",
"no_std",
"atomic",
"lock-free",
]
categories = [
"data-structures",
"algorithms",
"concurrency",
"no-std",
]
license = "MIT"
repository = "https://github.com/lmeller-git/nblf-queue"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
atomic-fallback = ["portable-atomic/fallback"]
default = ["pool"]
pool = []
std = ["alloc"]
[lib]
name = "nblf_queue"
path = "src/lib.rs"
[[bench]]
name = "queue_benchmarks"
path = "benches/queue_benchmarks.rs"
harness = false
[dependencies.crossbeam-utils]
version = "0.8.21"
default-features = false
[dependencies.portable-atomic]
version = "1.11.1"
features = ["require-cas"]
default-features = false
[dev-dependencies.criterion]
version = "0.8.1"
features = ["html_reports"]
[target."cfg(bench_crossbeam)".dev-dependencies.crossbeam-queue]
version = "0.3.12"
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[target."cfg(shuttle)".dependencies.shuttle]
version = "0.8.1"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(shuttle)",
"cfg(bench_crossbeam)",
]