-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
62 lines (55 loc) · 1.6 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
56
57
58
59
60
61
62
[package]
name = "catppuccin-whiskers"
version = "2.5.1"
authors = ["backwardspy <[email protected]>"]
edition = "2021"
description = "😾 Soothing port creation tool for the high-spirited!"
readme = "README.md"
homepage = "https://github.com/catppuccin/whiskers/tree/main/whiskers"
repository = "https://github.com/catppuccin/whiskers"
license = "MIT"
[profile.release]
lto = true
opt-level = "z"
strip = true
[lib]
name = "whiskers"
path = "src/lib.rs"
[[bin]]
name = "whiskers"
path = "src/main.rs"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/whiskers-{ target }{ archive-suffix }"
pkg-fmt = "bin"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
missing_errors_doc = "allow"
implicit_hasher = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
[dependencies]
anyhow = "1.0.86"
base64 = "0.22.1"
catppuccin = { version = "2.4.0", features = ["serde", "css-colors"] }
clap = { version = "4.5.4", features = ["derive"] }
clap-stdin = "0.5.0"
css-colors = "1.0.1"
detect-newline-style = "0.1.2"
encoding_rs_io = "0.1.7"
indexmap = { version = "2.2.6", features = ["serde"] }
itertools = "0.13.0"
lzma-rust = "0.1.6"
rmp-serde = "1.3.0"
semver = { version = "1.0.23", features = ["serde"] }
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
serde_yaml = "0.9.34"
tempfile = "3.10.1"
tera = { version = "1.19.1", features = ["preserve_order"] }
thiserror = "1.0.61"
[dev-dependencies]
assert_cmd = "2.0.14"
predicates = "3.1.0"