repotoire 0.8.2

Graph-powered code analysis CLI. 110 detectors for security, architecture, bus factor, and code quality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Minimal TUI framework for the findings browser.
//! Replaces ratatui + crossterm (~100 transitive deps) with ~400 lines + libc.

pub mod buffer;
pub mod input;
pub mod term;

pub use buffer::{
    split_horizontal, split_vertical, Buffer, Cell, Color, Constraint, Rect, Screen, Style,
};
pub use input::{poll_key, read_key, Key};
pub use term::{hide_cursor, install_panic_hook, show_cursor, AltScreenGuard, RawModeGuard};