[package]
edition = "2024"
name = "ring_pair"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tiny fixed-size ring buffer specialized for exactly two elements"
documentation = "https://docs.rs/ring_pair"
readme = "README.md"
keywords = [
"ring-buffer",
"circular-buffer",
"no-std",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kauzarc/ring_pair"
[features]
alloc = []
default = ["alloc"]
[lib]
name = "ring_pair"
path = "src/lib.rs"
[dependencies]