[package]
name = "ringbuf-basedrop"
version = "0.1.0"
authors = ["Alexey Gerasev <alexey.gerasev@gmail.com>", "Billy Messenger <BillyDM@tutamail.com>"]
edition = "2021"
description = "A fork of the `ringbuf` crate that uses basedrop's Shared pointer in place of Arc"
documentation = "https://docs.rs/ringbuf-basedrop"
homepage = "https://github.com/RustyDAW/ringbuf-basedrop"
repository = "https://github.com/RustyDAW/ringbuf-basedrop.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"
basedrop = "0.1"