sparcli 0.3.0

Lightweight, cross-platform toolkit for styled CLI output and interactive input widgets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Foundational building blocks shared by the output and input layers.
//!
//! Nothing here knows about concrete widgets; the modules provide colors and
//! styles, rich text, geometry, borders, the unified theme, width math,
//! terminal capabilities and the render model.

pub mod border;
pub(crate) mod cursor;
pub mod geometry;
pub mod render;
pub mod style;
pub mod terminal;
pub mod text;
pub mod theme;
pub mod width;

#[cfg(feature = "markup")]
pub mod markup;