cached-context 0.3.0

File cache with diff tracking for AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! cached-context - File cache with diff tracking cache management service
//!
//! This crate provides cache management functionality for the Terraphim project.

pub mod cache;
pub mod diff;
pub mod error;
pub mod mcp;
pub mod types;

pub use cache::CacheStore;
pub use error::Error;
pub use types::{CacheConfig, CacheStats, FileReadResult};