minui 0.5.0

A minimalist Rust framework for TUIs and terminal games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*! Terminal-related utilities.

This module contains small, framework-level helpers for dealing with terminal
capabilities and portability.

Currently included:
- `capabilities`: best-effort terminal capability detection and color fallback logic.

The goal is to keep this layer lightweight and editor-friendly:
- apps/widgets can request rich colors
- MinUI can downgrade them based on terminal support
*/

pub mod capabilities;

pub use capabilities::{ColorSupport, TerminalCapabilities};