#ascii-art #cat #ascii #art #emoji #random #silly

nightly bin+lib cat-ascii-faces

一个用于生成随机 ASCII 猫脸的库 + 用于打印它们的二进制文件

6 个版本

0.1.5 2024 年 2 月 29 日
0.1.4 2023 年 11 月 20 日
0.1.3 2023 年 10 月 7 日

命令行工具 中排名 #2355

Download history 11/week @ 2024-03-08 2/week @ 2024-03-15 23/week @ 2024-03-29 8/week @ 2024-04-05

每月下载量 103

MIT 许可证

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