5 个版本 (3 个重大变更)
0.4.1 | 2024 年 1 月 30 日 |
---|---|
0.4.0 | 2024 年 1 月 30 日 |
0.3.0 | 2024 年 1 月 27 日 |
0.2.0 | 2023 年 5 月 18 日 |
0.1.0 | 2022 年 6 月 22 日 |
#389 在 命令行界面 中
每月 125 次下载
用于 sos
13KB
286 行(不包括注释)
终端横幅
一个用于在当前终端宽度内渲染带框横幅的微型 Rust 库,每段文本都自动换行。
请参阅示例和API 文档。
许可证
MIT 或 Apache-2.0
lib.rs
:
一个在终端宽度内渲染带框横幅的微型实用工具。
使用 color
功能启用对终端颜色的支持,请参阅示例了解用法。
use terminal_banner::Banner;
let banner = Banner::new()
.text("LIPSUM".into())
.text("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.".into())
.render();
println!("{}", banner);
依赖关系
~3–11MB
~116K SLoC