rtrb 0.2.3

A realtime-safe single-producer single-consumer ring buffer
Documentation
[package]
name = "rtrb"
version = "0.2.3"
authors = [
    "Stjepan Glavina <stjepang@gmail.com>",
    "Matthias Geier <Matthias.Geier@gmail.com>",
]
repository = "https://github.com/mgeier/rtrb"
description = "A realtime-safe single-producer single-consumer ring buffer"
readme = "README.md"
categories = ["concurrency", "data-structures", "no-std"]
keywords = ["lock-free", "wait-free", "spsc", "queue"]
license = "MIT OR Apache-2.0"
edition = "2018"

exclude = [
    ".*",
]

[features]
default = ["std"]
std = []

[dependencies]
cache-padded = "1.1"

[dev-dependencies]
rand = "0.8"
criterion = "0.3"

[lib]
bench = false # Don't disturb criterion command line parsing

[[bench]]
name = "single_thread_single_byte"
harness = false

[[bench]]
name = "single_thread_two_bytes"
harness = false

[[bench]]
name = "single_thread_with_chunks"
harness = false

[[bench]]
name = "two_threads"
harness = false