[dependencies.bytes]
default-features = false
optional = true
version = "1"
[dependencies.hybrid-array]
default-features = false
optional = true
version = "0.4"
[dependencies.zeroize]
optional = true
version = "1"
[features]
alloc = []
buf-trait = ["dep:bytes"]
default = ["alloc"]
hybrid-array = ["dep:hybrid-array"]
zeroize = ["dep:zeroize", "hybrid-array?/zeroize"]
[lib]
name = "ringo_buff"
path = "src/lib.rs"
[package]
authors = ["Roland Rauch"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "algorithms", "network-programming", "filesystem", "embedded"]
description = "Ring buffers for bytes, with heap and stack storage."
documentation = "https://docs.rs/ringo-buff"
edition = "2024"
keywords = ["ring-buffer", "circular-buffer", "bytes", "read", "buffer"]
license = "MIT OR Apache-2.0"
name = "ringo-buff"
readme = "README.md"
repository = "https://github.com/rrauch/ringo-buff"
rust-version = "1.85"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]