[package]
edition = "2024"
rust-version = "1.97.0"
name = "kevy-ring"
version = "3.18.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free bounded SPSC ring buffer. Pure Rust."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-ring"
readme = "README.md"
keywords = [
"spsc",
"lock-free",
"ring-buffer",
"queue",
"kevy",
]
categories = [
"concurrency",
"data-structures",
"no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_ring"
path = "src/lib.rs"
[[example]]
name = "bench_ring"
path = "examples/bench_ring.rs"
[[test]]
name = "loom"
path = "tests/loom.rs"
[[test]]
name = "perf_gate"
path = "tests/perf_gate.rs"
[dependencies]
[dev-dependencies]
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
warnings = "deny"