gitj 0.3.0

A gitk-style, Windows 3.1-flavored git repository browser and commit helper built on the Saudade toolkit
Documentation
//! Git-specific widgets layered on top of saudade's generic set.

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

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