A simple im-mem cache for Rust
A simple rust implementation of HashMap with expiration control.
``` use simplecachers::SimpleCache;
let mut cache: SimpleCache = SimpleCache::new();
cache.get(&1); ```