1 2 3 4 5 6 7 8 9 10
//! In-memory cache adapter. mod cache; mod registration; pub use cache::MemoryCache; pub use registration::register_memory; #[cfg(test)] mod tests;