void_graph/lib.rs
1//! # void-graph
2//!
3//! Commit graph visualization TUI for void repositories.
4//!
5//! ## Attribution
6//!
7//! This crate is inspired by and adapts code from
8//! [Serie](https://github.com/lusingander/serie) by Kyosuke Fujimoto,
9//! licensed under the MIT License. Serie provides rich git commit graph
10//! visualization using terminal image protocols.
11//!
12//! See LICENSE-SERIE for the full license text.
13
14pub mod app;
15pub mod check;
16pub mod color;
17pub mod event;
18pub mod graph;
19pub mod keybind;
20pub mod protocol;
21pub mod void_backend;
22pub mod widget;