[package]
edition = "2024"
rust-version = "1.85"
name = "nexus-queue"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance lock-free SPSC and MPSC queues for low-latency systems"
readme = "README.md"
keywords = [
"spsc",
"mpsc",
"ring-buffer",
"queue",
"lock-free",
]
categories = [
"concurrency",
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Abso1ut3Zer0/nexus"
resolver = "2"
[lib]
name = "nexus_queue"
path = "src/lib.rs"
[[example]]
name = "bench_crossbeam"
path = "examples/bench_crossbeam.rs"
[[example]]
name = "bench_mpsc"
path = "examples/bench_mpsc.rs"
[[example]]
name = "bench_mpsc_pingpong"
path = "examples/bench_mpsc_pingpong.rs"
[[example]]
name = "bench_rtrb"
path = "examples/bench_rtrb.rs"
[[example]]
name = "bench_spsc"
path = "examples/bench_spsc.rs"
[dependencies.crossbeam-utils]
version = "0.8.21"
[dev-dependencies.crossbeam-queue]
version = "0.3"
[dev-dependencies.hdrhistogram]
version = "7.5"
[dev-dependencies.rtrb]
version = "0.3"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_ptr_alignment = "allow"
cast_sign_loss = "allow"
cognitive_complexity = "allow"
doc_markdown = "allow"
inline_always = "allow"
manual_range_contains = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_fields_in_debug = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_range_loop = "allow"
ptr_as_ptr = "allow"
redundant_pub_crate = "allow"
ref_as_ptr = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
use_self = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"