//! Static and stub cache interfaces optimized for bare-metal and ultra-constrained embedded targets.
/// A zero-allocation, completely `alloc`-free static direct-mapped concurrent cache.
pub use StaticDualCache;
/// A zero-overhead facade stub implementation where all operations are compiled away.
pub use DualCacheStub;