ratkit 0.2.18

A comprehensive collection of reusable TUI components for ratatui including resizable splits, tree views, markdown rendering, toast notifications, dialogs, and terminal embedding
Documentation
1
2
3
4
5
6
7
8
//! Code diff viewer for ratatui.

pub mod code_diff;

pub use code_diff::{
    ChangeType, CodeDiff, DiffConfig, DiffFile, DiffFileStatus, DiffHunk, DiffLine, DiffLineCell,
    DiffLineKind, DiffStyle, InlineSegment, SideBySideRow,
};