-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 732 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "charasay"
version = "3.3.3"
edition = "2021"
description = "The future of cowsay 🐮! Colorful characters saying something 🗨️."
readme = "readme.md"
repository = "https://github.com/latipun7/charasay"
license = "MIT"
keywords = ["ansi", "cowsay", "print"]
categories = [
"command-line-utilities",
"rendering",
"text-processing",
"value-formatting",
"visualization",
]
[[bin]]
name = "chara"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
clap_complete = "4.6.5"
rand = "0.10.1"
regex = "1.12.4"
rust-embed = { version = "8.11.0", features = ["debug-embed"] }
strip-ansi-escapes = "0.2.1"
textwrap = { version = "0.16.2", features = ["terminal_size"] }
unicode-width = "0.2.2"