gha-cache-proof 1.0.1

GitHub Actions cache compatibility checker and local cache-store receipt tool for offline CI
Documentation
//! GitHub Actions cache compatibility checks for offline CI systems.
//!
//! `gha-cache-proof` models the public `actions/cache` restore/save surface
//! against a deterministic local store and emits receipts that can be attached
//! to larger workflow-run evidence.

mod engine;
mod model;
mod render;
mod store;
mod workflow;

pub use engine::{
    CheckWorkflowOptions, CommonOptions, RestoreOptions, SaveOptions, check_workflows,
    restore_cache, save_cache,
};
pub use model::{Compression, OutputFormat, RunnerOs};
pub use render::render_receipt;

pub const TOOL_NAME: &str = "gha-cache-proof";
pub const TOOL_VERSION: &str = env!("CARGO_PKG_VERSION");