rom_cache/
lib.rs

1#![doc = include_str!("../README.md")]
2#![deny(
3    missing_docs,
4    rustdoc::broken_intra_doc_links,
5    elided_lifetimes_in_paths
6)]
7#![cfg_attr(docsrs, feature(doc_auto_cfg))]
8
9pub mod cache;
10pub mod error;
11
12pub use cache::{Cache, Cacheable};
13pub use error::*;