[package]
edition = "2021"
rust-version = "1.65"
name = "rt-ring"
version = "0.1.0"
build = false
exclude = [
"fuzz/",
".githooks/",
".github/",
".vscode/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free SPSC ring buffer with overwrite-oldest semantics for real-time applications"
readme = "README.md"
keywords = [
"ring-buffer",
"spsc",
"lock-free",
"real-time",
"audio",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hasanzakeri/rt-ring"
[features]
loom-tests = []
[lib]
name = "rt_ring"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "loom_spsc"
path = "tests/loom_spsc.rs"
[[test]]
name = "overwrite"
path = "tests/overwrite.rs"
[[test]]
name = "proptest"
path = "tests/proptest.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.loom]
version = "0.7"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.ringbuf]
version = "0.4"