[package] name = "ringbuf" version = "0.2.8" authors = ["Alexey Gerasev "] edition = "2021" description = "Lock-free SPSC FIFO ring buffer with direct access to inner data" documentation = "https://docs.rs/ringbuf" homepage = "https://github.com/nthend/ringbuf" repository = "https://github.com/nthend/ringbuf.git" readme = "README.md" keywords = ["lock-free", "spsc", "ring-buffer", "rb", "fifo"] categories = ["concurrency", "data-structures", "no-std"] license = "MIT/Apache-2.0" [features] default = ["std"] std = [] benchmark = [] [[example]] name = "simple" [[example]] name = "message" required-features = ["std"] [dependencies] cache-padded = "1.2.0"