[package]
edition = "2024"
rust-version = "1.85"
name = "nexus-logbuf"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free SPSC and MPSC byte ring buffers for logging and archival"
readme = "README.md"
keywords = [
"spsc",
"mpsc",
"ring-buffer",
"queue",
"lock-free",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Abso1ut3Zer0/nexus"
resolver = "2"
[lib]
name = "nexus_logbuf"
path = "src/lib.rs"
[[example]]
name = "perf_mpsc_latency"
path = "examples/perf_mpsc_latency.rs"
[[example]]
name = "perf_spsc_latency"
path = "examples/perf_spsc_latency.rs"
[[example]]
name = "throughput_bench"
path = "examples/throughput_bench.rs"
[dependencies.crossbeam-utils]
version = "0.8.21"
[dev-dependencies.hdrhistogram]
version = "7.5"
[dev-dependencies.rand]
version = "0.8"
[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"