arraydeque 0.4.5

A ring buffer with a fixed capacity, which can be stored on the stack.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "arraydeque"
version = "0.4.5"
authors = ["andylokandy"]
description = "A ring buffer with a fixed capacity, which can be stored on the stack."
homepage = "https://github.com/andylokandy/arraydeque"
documentation = "https://docs.rs/arraydeque"
keywords = ["ring", "circular", "stack", "deque", "array"]
categories = ["no-std", "data-structures", "memory-management"]
license = "MIT/Apache-2.0"
repository = "https://github.com/andylokandy/arraydeque"
[dependencies.generic-array]
version = "0.12"
optional = true

[features]
default = ["std"]
std = []
use_generic_array = ["generic-array"]