3个版本
0.1.2 | 2023年8月12日 |
---|---|
0.1.1 | 2023年8月8日 |
0.1.0 | 2023年8月8日 |
#768 in 命令行界面
用于 hex_it
7KB
102 行
tui-tools
描述
我在tui应用程序中使用的一些工具,用于着色和接受最小依赖的输入。
用法
将以下内容添加到您的Cargo.toml
[dependencies]
tui-tools = "0.1.0"
示例
着色字符串,在Windows上启用ansi。
use tui_tools::Colors;
fn main() {
println!("{}", "Hello World!".green());
}
从用户获取输入。
use tui_tools::getch;
fn main() {
let input = getch();
println!("You pressed: {}", input as char);
}
清除屏幕。
use tui_tools::cls;
fn main() {
cls();
}
许可证
来源
依赖关系
~0–11MB
~58K SLoC