gitj 0.2.0

A gitk-style, Windows 3.1-flavored git repository browser and commit helper built on the Saudade toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Git-specific widgets layered on top of saudade's generic set.

mod commit_list;
mod diff_view;
mod graph;
mod heading;
pub mod layout;
mod search_bar;
mod shared;
mod shell;

pub use commit_list::{CommitList, CommitRow};
pub use diff_view::{DiffMode, DiffView};
pub use graph::{Graph, GraphRow, compute_graph};
pub use heading::Heading;
pub use search_bar::SearchBar;
pub use shared::Shared;
pub use shell::Shell;