zccache 1.11.18

Local-first compiler cache for C/C++/Rust/Emscripten
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! File metadata cache for zccache.
//!
//! Provides a fast, concurrent, in-memory cache of filesystem metadata
//! to reduce redundant stat calls during compilation.

pub mod cache_system;
pub mod clock;
pub mod metadata;
pub mod persistence;
pub mod verify;

pub use cache_system::CacheSystem;
pub use clock::{ChangeJournal, Clock};
pub use metadata::{Confidence, FileMetadata, MetadataCache};
pub use persistence::FORMAT_VERSION;
pub use verify::VerifyResult;