# 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)