mirror of https://github.com/zkat/cacache-rs.git
14 lines
349 B
Rust
14 lines
349 B
Rust
//! cacache is a Rust library for managing local key and content address
|
|
//! caches. It's really fast, really good at concurrency, and it will never
|
|
//! give you corrupted data, even if cache files get corrupted or manipulated.
|
|
|
|
mod content;
|
|
pub mod get;
|
|
pub mod put;
|
|
pub mod rm;
|
|
mod index;
|
|
mod errors;
|
|
|
|
pub use errors::Error;
|
|
pub use index::Entry;
|