-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
47 lines (43 loc) · 1.19 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
[package]
name = "catppuccin-purr"
version = "1.1.0"
authors = ["uncenter <[email protected]>"]
license = "MIT"
description = "Unoffical CLI for developing Catppuccin ports"
readme = "README.md"
homepage = "https://github.com/uncenter/purr"
repository = "https://github.com/uncenter/purr"
keywords = ["cli"]
categories = ["command-line-utilities"]
edition = "2021"
[[bin]]
name = "purr"
path = "src/main.rs"
[dependencies]
catppuccin = { version = "2.4.0", features = ["css-colors"] }
clap = { version = "4.5.20", features = ["derive", "env"] }
color-eyre = "0.6.3"
convert_case = "0.6.0"
css-colors = "1.0.1"
csscolorparser = { version = "0.6.2", features = ["rgb"] }
etcetera = "0.8.0"
fancy-regex = "0.14.0"
flate2 = "1.0.34"
graphql_client = { version = "0.14.0", features = ["reqwest-blocking"] }
inquire = "0.7.5"
log = "0.4.22"
pretty_env_logger = "0.5.0"
reqwest = { version = "0.11.27", features = ["blocking"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
strsim = "0.11.1"
strum = { version = "0.26.3", features = ["derive"] }
tar = "0.4.43"
url = "2.5.2"
[profile.release]
strip = true
lto = true
[lints.clippy]
all = "warn"
pedantic = "warn"