async-ringbuf 0.1.3

Async SPSC FIFO ring buffer
Documentation
[package]
name = "async-ringbuf"
version = "0.1.3"
edition = "2021"
resolver = "2"

description = "Async SPSC FIFO ring buffer"
documentation = "https://docs.rs/async-ringbuf"
homepage = "https://github.com/agerasev/async-ringbuf"
repository = "https://github.com/agerasev/async-ringbuf.git"
readme = "README.md"
keywords = ["async", "spsc", "ring-buffer", "rb", "fifo"]
categories = ["asynchronous", "concurrency", "data-structures", "no-std"]
license = "MIT/Apache-2.0"

[features]
default = ["alloc", "std"]
alloc = ["ringbuf/alloc"]
std = ["alloc", "ringbuf/std", "futures/std"]
impl-tokio = ["std", "tokio"]

[dependencies]
ringbuf = { version = "0.3.3", default-features = false }
futures = { version = "0.3.23", default-features = false }
tokio = { version = "1.0", optional = true, default-features = false }

[dev-dependencies]
futures = { version = "0.3.23", features = ["executor", "thread-pool"] }