//! Provides a thread-safe, concurrent cache implementation built upon
//! [`dashmap::DashMap`][dashmap].
//!
//! [dashmap]: https://docs.rs/dashmap/*/dashmap/struct.DashMap.html
pub use CacheBuilder;
pub use Cache;
pub use Iter;
pub use EntryRef;
/// Provides extra methods that will be useful for testing.