elaru 0.1.2

Memory safe implementation of LRU cache.
Documentation
1
2
3
4
5
6
7
8
# elaru: A simple, fast, and memory safe least-recently-used (LRU) cache.

`elaru` avoids all unsafe operations while still achieves O(1) performance on `insert`, `get`,
and `remove_lru`.

See the [documentation](https://docs.rs/elaru) for examples and more details.

Acknowledgement: This crate is heavily inspired by [uluru](https://crates.io/crates/uluru), a no_std lru implementation from servo.