array-deque 0.4.0

Fixed-capacity circular buffer implementations: heap-allocated ArrayDeque and stack-allocated StackArrayDeque. Efficient O(1) operations, no_std support.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "array-deque"
version = "0.4.0"
authors = ["Tobiasz Chmielewski <0x7030676e31@proton.me>"]
build = false
exclude = [
    "target/",
    ".git/",
    ".vscode/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fixed-capacity circular buffer implementations: heap-allocated ArrayDeque and stack-allocated StackArrayDeque. Efficient O(1) operations, no_std support."
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",
    "no-std",
]
license = "MIT"
repository = "https://github.com/0x7030676e31/array-deque"

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

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

[lib]
name = "array_deque"
path = "src/lib.rs"

[dependencies.serde]
version = "1.0.228"
optional = true

[dev-dependencies.serde_json]
version = "1.0.140"