retainer 0.4.0

Minimal async cache in Rust with support for key expirations
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

// exposed modules
pub mod cache;
pub mod entry;

// lifted types to the top level
pub use crate::cache::Cache;
pub use crate::entry::CacheExpiration;