gitstack 5.3.0

Git history viewer with insights - Author stats, file heatmap, code ownership
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Graph display module
//!
//! Visually displays Git commit history including branch structure.

pub mod builder;
pub mod cell;
pub mod colors;
pub mod layout;

pub use builder::build_graph;
pub use cell::GraphCell;
pub use colors::{
    get_graph_color, ColorContext, PenaltyBasedColorAssigner, MAIN_BRANCH_COLOR, PALETTE_SIZE,
};
pub use layout::{GraphLayout, GraphRow};