A fixed size VecDeque to match Python Deque
A fixed size deque implementation
A fixed-size, zero-allocation circular buffer for Rust.
Fixed-capacity circular buffer implementations: heap-allocated ArrayDeque and stack-allocated StackArrayDeque. Efficient O(1) operations, no_std support.
Highly optimized fixed-capacity deque buffer stored on the stack
no_std, no_alloc, use [T; N]. support `Vec`/`VecDeque`/`History`
A production-ready Rust crate for lock-free concurrent data structures with performance monitoring
A highly parallel Perl 5 interpreter written in Rust
A fixed-capacity, stack-allocated double-ended queue (deque) backed by generic-array
A fixed-capacity linked list with stable element addressing and no dynamic allocations
A ring buffer with a fixed capacity, which can be stored on the stack.
A concurrent work-stealing queue for building schedulers