-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 1.25 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 = "lgtmeow"
version = "0.6.1"
edition = "2021"
authors = ["Nyakku Shigure <[email protected]>"]
description = "LGTMeow 🐾 —— 「本喵觉得很不错~」"
license = "MIT"
homepage = "https://github.com/moefyit/lgtmeow"
repository = "https://github.com/moefyit/lgtmeow"
readme = "README.md"
keywords = ["LGTM", "meow", "LGTMeow", "cli", "emoji-kitchen"]
rust-version = "1.81"
[features]
default = ["emoji-paw-prints"]
emojis-all = ["emoji-paw-prints", "emoji-cat"]
emoji-paw-prints = []
emoji-cat = []
copy = ["copypasta"]
[build-dependencies]
reqwest = { version = "0.12.4", features = ["json", "stream"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-stream = "0.1"
indicatif = "0.17.8"
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
[target.'cfg(target_os = "linux")'.build-dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
rand = "0.8.5"
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
dirs = "6.0"
cliclack = "0.3.0"
console = "0.15.8"
toml = "0.8.12"
copypasta = { version = "0.10.1", optional = true }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"