zrl 0.1.4

zrl (zhrexx's Rust Library) is a collection of smaller and bigger handwritten libraries.
Documentation
1
2
3
4
5
6
7
8
# zhrexx's Rust library

This is a collection of smaller and bigger libraries that can work together.

### Modules
- `channel` - a thread-safe, MPMC (multi-producer multi-consumer) channel implementation with support for both bounded and unbounded queues. The channel is clonable allowing multiple threads share the same channel endpoints
- `lru` - LRU (Least Recently Used) cache implementation
- `seqlock` - A SeqLock implementation (for more information look at the documentation of seqlock)