HashLru is an experimental LRU cache implemented in Rust.
It tries to follow the API exposed by a standard Rust HashMap while enforcing a limited memory footprint by limiting the number of keys using the LRU strategy, which is a quite common cache replacement policy.
For now this is a toy project, clearly NOT suitable for production use.
[TODO...]
HashLru is licensed under the MIT license.