Skip to main content

rskit_cache/adapters/
mod.rs

1//! Built-in cache adapters.
2
3/// In-memory cache adapter.
4pub mod memory;
5
6/// Filesystem cache adapter.
7#[cfg(feature = "fs")]
8pub mod fs;