6 个版本
0.1.5 | 2024 年 2 月 29 日 |
---|---|
0.1.4 | 2023 年 11 月 20 日 |
0.1.3 | 2023 年 10 月 7 日 |
在 命令行工具 中排名 #2355
每月下载量 103 次
10KB
223 行
cat-ascii-faces & cargo-cat
此软件包提供了两个包,一个库和一个二进制文件。
库
您可以使用以下命令在项目中安装库
cargo add cat_ascii_faces
然后,您可以按需使用它
use cat_ascii_faces::Cats;
fn main() {
let cats = Cats::new();
// Print some random cats
println!("{}", cats.cat()); // (=^・ェ・^=)
println!("{}", cats.cat()); // ฅ(⌯͒• ɪ •⌯͒)ฅ❣
println!("{}", cats.cat()); // o(=・ω・=o)
// Print all cats (will print explicit Unicode because we're using the debug print "{:#?}")
println!("{:#?}", Cats::all()); // [ ... ]
}
二进制文件
二进制文件也非常简单 ✨
安装
cargo install cat-ascii-faces
使用方法
$ cargo cat --help
cargo-cat is a tool to print cats to the terminal (=^・ェ・^=)
Usage:
cargo cat [OPTIONS]
Options:
--help, -h Print this help message
--all, -a Print all cats
If no option is provided, `cargo cat` will print a random cat face.
Note that the cat may render slightly different depending on the terminal.
依赖关系
~66KB