Skip to main content

cached_context/
lib.rs

1//! cached-context - File cache with diff tracking cache management service
2//!
3//! This crate provides cache management functionality for the Terraphim project.
4
5pub mod cache;
6pub mod diff;
7pub mod error;
8pub mod mcp;
9pub mod types;
10
11pub use cache::CacheStore;
12pub use error::Error;
13pub use types::{CacheConfig, CacheStats, FileReadResult};