terminal_tools_plus_plus 0.2.1

A collection of enhanced utilities for terminal manipulation and CLI development in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! terminal_tools_plus_plus
//!
//! Lightweight utilities for building better CLI tools in Rust.
//!
//! Features:
//! - Progress bars
//! - Non-blocking spinners
//! - Styled logs
//! - Terminal helpers
//! - Text effects

pub mod terminal;
pub mod ui;
pub mod effects;

pub use terminal::*;
pub use ui::*;
pub use effects::*;