gitkraft-core 0.8.8

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

pub mod blame;
pub mod ops;
pub mod types;

pub use blame::{blame_file, BlameLine};
pub use ops::{
    checkout_file_at_commit, diff_file_commit_vs_workdir, file_list_commit_vs_workdir,
    get_commit_diff, get_commit_file_list, get_commit_range_diff, get_single_file_diff,
    get_staged_diff, get_working_dir_diff,
};
pub use types::{DiffFileEntry, DiffHunk, DiffInfo, DiffLine, FileStatus, StatusColorCategory};