[package]
edition = "2024"
rust-version = "1.85"
name = "nexus-notify"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-thread event queue with conflation and FIFO delivery"
readme = false
keywords = [
"lock-free",
"concurrent",
"data-structures",
"trading",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Abso1ut3Zer0/nexus"
resolver = "2"
[lib]
name = "nexus_notify"
path = "src/lib.rs"
[[example]]
name = "bench_event_queue"
path = "examples/bench_event_queue.rs"
[[test]]
name = "event_queue"
path = "tests/event_queue.rs"
[[bench]]
name = "event_queue"
path = "benches/event_queue.rs"
harness = false
[dependencies.crossbeam-utils]
version = "0.8.21"
[dependencies.nexus-queue]
version = "1.2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[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"