rt-ring 0.1.0

Lock-free SPSC ring buffer with overwrite-oldest semantics for real-time applications
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"