arraydeque 0.2.3

A ring buffer with a fixed capacity, can be stored on the stack.
Documentation
[package]
name = "arraydeque"
version = "0.2.3"
authors = ["goandylok"]
license = "MIT/Apache-2.0"

description = "A ring buffer with a fixed capacity, can be stored on the stack."
documentation = "https://docs.rs/arraydeque"
repository = "https://github.com/goandylok/arraydeque"
homepage = "https://github.com/goandylok/arraydeque"

keywords = ["ring", "circular", "stack", "array", "no_std"]

[dependencies.odds]
version = "0.2.12"
default-features = false

[dependencies.nodrop]
version = "0.1.8"
default-features = false

[dependencies.generic-array]
version = "0.5.1"
optional = true

[features]
default = ["std"]
std = ["odds/std", "nodrop/std"]
use_union = ["nodrop/use_union"]
use_generic_array = ["generic-array"]