1//! A cache of services
23#![doc(html_root_url = "https://docs.rs/tower-ready-cache/0.3.1")]
4#![deny(missing_docs)]
5#![deny(rust_2018_idioms)]
6#![allow(elided_lifetimes_in_paths)]
78pub mod cache;
9pub mod error;
1011pub use self::cache::ReadyCache;