-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (49 loc) · 1.47 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "lolcrab"
version = "0.4.1"
authors = [
"David Knaack <[email protected]>",
"Nor Khasyatillah <[email protected]>",
]
edition = "2018"
description = "Like lolcat but with noise and more colorful."
keywords = ["lolcat", "rainbow"]
categories = ["command-line-interface", "command-line-utilities", "games"]
readme = "README.md"
repository = "https://github.com/mazznoer/lolcrab"
documentation = "https://docs.rs/lolcrab/"
license = "MIT OR Apache-2.0"
exclude = [
".github/*",
"docs/*",
"scripts/*",
"test_data/*",
"Makefile",
]
[package.metadata.docs.rs]
no-default-features = true
[profile.release]
lto = true
strip = true
[features]
default = ["cli"]
cli = ["clap", "clap_complete"]
[[bin]]
name = "lolcrab"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
bstr = "1.9.1"
clap = { version = "4.5.9", features = ["derive", "wrap_help"], optional = true }
#colorgrad = { version = "0.7.0" }
colorgrad = { git = "https://github.com/mazznoer/colorgrad-rs" }
fastrand = "2.1.0"
mimalloc = { version = "0.1.37", optional = true, default-features = false }
noise = { version = "0.9.0", default-features = false }
unicode-segmentation = "1.10.1"
unicode-width = "0.2.0"
[build-dependencies]
clap = { version = "4.5.9", features = ["derive", "wrap_help"], optional = true }
clap_complete = { version = "4.5.8", optional = true }
#colorgrad = { version = "0.7.0" }
colorgrad = { git = "https://github.com/mazznoer/colorgrad-rs" }