5个版本
使用旧的Rust 2015
0.2.3 | 2018年5月25日 |
---|---|
0.2.2 | 2016年5月15日 |
0.2.1 | 2016年5月13日 |
0.2.0 | 2016年3月30日 |
0.1.0 | 2016年3月9日 |
#853 in 命令行界面
569 每月下载量
用于 6 crates
11KB
138 代码行数(不含注释)
colorify!
文档
用于终端彩色打印的便利宏。
用法
将以下内容添加到您的 Cargo.toml
[dependencies]
colorify = "0.2"
示例
#[macro_use] extern crate colorify;
use std::io::{self, Write};
fn main() {
// List colors:
printc!(help);
// Use one of three ways:
printc!(yellow: "Number of banana peels on head: {}", 7);
printlnc!(red: "Number of zombies killed: {}", 50);
writeln!(io::stdout(), colorify!(orange: "Number of baggies filled \
while walking dogs: {}"), 2).unwrap();
}
已弃用
此库不太可能添加新功能或更改。
推荐替代方案