3 个不稳定版本
0.2.1 | 2021 年 4 月 1 日 |
---|---|
0.2.0 | 2021 年 2 月 22 日 |
0.1.1 | 2021 年 2 月 19 日 |
0.1.0 |
|
#89 在 #term
被 powerpack-cli 使用
7KB
137 行
彼得
彼得基于 ansi_term
包构建,允许对实现了 Display
的任何内容进行样式化,并通过提供 Stylize
特性来简化文本着色。
入门
use peter::Stylize;
println!("This is in red: {}", "a red string".red());
println!("How about some {}?", "bold and underline".bold().underline());
许可证
许可协议为以下之一
- Apache 许可协议 2.0 版 (LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT 许可协议 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
任选其一。
lib.rs
:
彼得基于 ansi_term
包构建,允许对实现了 Display
的任何内容进行样式化,并通过提供 Stylize
特性来简化文本着色。
示例
use peter::Stylize;
println!("This is in red: {}", "a red string".red());
println!("How about some {}?", "bold and underline".bold().underline());
依赖
~240KB