ringbuf 0.3.0

Lock-free SPSC FIFO ring buffer with direct access to inner data
Documentation
[[example]]
name = "simple"
required-features = ["alloc"]

[[example]]
name = "message"
required-features = ["std"]
[dependencies.crossbeam-utils]
default-features = false
version = "0.8"

[features]
alloc = []
bench = []
default = ["alloc", "std"]
std = ["alloc"]

[package]
authors = ["Alexey Gerasev <alexey.gerasev@gmail.com>"]
categories = ["concurrency", "data-structures", "no-std"]
description = "Lock-free SPSC FIFO ring buffer with direct access to inner data"
documentation = "https://docs.rs/ringbuf"
edition = "2021"
homepage = "https://github.com/agerasev/ringbuf"
keywords = ["lock-free", "spsc", "ring-buffer", "rb", "fifo"]
license = "MIT/Apache-2.0"
name = "ringbuf"
readme = "README.md"
repository = "https://github.com/agerasev/ringbuf.git"
version = "0.3.0"