array-deque 0.2.0

A fixed-capacity circular buffer (ring buffer) implementation with efficient operations at both ends
Documentation
[package]
name = "array-deque"
version = "0.2.0"
edition = "2024"
authors = ["Tobiasz Chmielewski <0x7030676e31@proton.me>"]
description = "A fixed-capacity circular buffer (ring buffer) implementation with efficient operations at both ends"
license = "MIT"
repository = "https://github.com/0x7030676e31/array-deque"
homepage = "https://github.com/0x7030676e31/array-deque"
documentation = "https://docs.rs/array-deque"
readme = "README.md"
keywords = [
    "deque",
    "circular-buffer",
    "ring-buffer",
    "data-structures",
    "fixed-capacity",
]
categories = ["data-structures"]
exclude = ["target/", ".git/", ".vscode/"]

[dependencies]
serde = { version = "1.0.219", optional = true }

[dev-dependencies]
serde_json = "1.0.140"

[features]
default = ["std"]
serde = ["dep:serde"]
std = []

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]