ratto 0.15.0

Ratatui-powered terminal primitives for shell dashboards: flicker-free repaints, progress bars, prompts, and portable time tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod appearance;
pub mod buffer_ansi;
pub mod frame_state;
pub mod history;
pub mod inline;
pub mod marks;
pub mod scroll;
pub mod tab_title;
// Live on the unix input path only; the pure parts stay platform-agnostic
// so every leg keeps their unit coverage, which dead-code analysis does
// not count as use.
#[cfg_attr(windows, allow(dead_code))]
pub mod mouse;
#[cfg_attr(windows, allow(dead_code))]
pub mod tap;
#[cfg_attr(windows, allow(dead_code))]
pub mod theme_notify;
pub mod tty;