tree-tui 0.1.2

An interactive terminal UI for visualizing directories: code, size, and git stats.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Directory-tree data model: a metric-agnostic skeleton plus lazily-computed,
//! cached per-lens metric layers.

mod build;
mod lens;
mod node;
pub mod view;

pub use build::{aggregate, aggregate_code, build_skeleton};
pub use lens::{ColumnSpec, Lens, SubKey, Tint};
pub use node::{
    ChurnData, CodeData, CodeNum, Layer, NodeId, NodeKind, SortDir, StatusData, Tree, TreeNode,
};