gitkraft-core 0.6.6

Shared core logic for GitKraft — domain models, git operations, repository management
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Diff feature — types and operations for working-directory, staged, and
//! per-commit diffs.

pub mod ops;
pub mod types;

pub use ops::{
    get_commit_diff, get_commit_file_list, get_single_file_diff, get_staged_diff,
    get_working_dir_diff,
};
pub use types::{DiffFileEntry, DiffHunk, DiffInfo, DiffLine, FileStatus, StatusColorCategory};