verdant-cache-runtime 0.4.2

Live cache runtime for the verdant agent-loop cache: content-addressed payload store + DDG
Documentation
//! verdant-runtime — live cache runtime that the M1 MCP server consumes.
//!
//! Build sequence so far: step 2 lands the content-addressed object
//! store (`store`); step 3 lands the `LiveCache` surface that wraps the
//! store with a registry, file-root revalidation, and dirty invalidation
//! (`cache`). Step 4 (file revalidation path) is folded into the cache
//! module; step 5 wires `LiveCache` into the verdant-mcp `read` tool.

pub mod cache;
pub mod cas;
pub mod remote;
pub mod store;
pub mod tree;

pub use cache::{
    fingerprint_file, hash_file, hash_file_with_limit, hash_max_bytes, stat_fingerprint,
    tool_result_key, CacheError, FileHash, FileRoot, LiveCache, LookupOutcome,
};
pub use remote::{RemoteStore, RemoteStoreConfig};
pub use store::{FileRootSerde, FileStore, Key, Payload, PayloadMeta, Store, StoreError};