eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
1
2
3
4
5
6
7
//! Caching module for performance optimization.
//!
//! Provides LRU caches for expensive operations like diff computation.

pub mod diff;

pub use diff::DiffCache;