-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (47 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
48
49
50
51
52
[package]
name = "emoji-gen"
description = "Emoji importing tool for the fediverse"
buld = "build.rs"
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/cutestnekoaqua/emoji-gen"
repository = "https://github.com/cutestnekoaqua/emoji-gen"
authors = ["April John <[email protected]>", "Mehdi Benadel <[email protected]>"]
version = "0.5.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
walkdir = "2"
debug_print = "1"
imghdr = "0.7"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
zip = "0.6"
datetime = "0.5.2"
chrono = "0.4.26"
anyhow = "1"
url = "2.5"
env_logger = "0.11"
error-stack = "0.4.1"
log = "0.4.19"
indicatif = {version = "0.17.5", features = ["rayon"]}
rayon = "1.7.0"
reqwest = { version = "0.12.4", features = ["blocking", "json", "multipart"] }
tempdir = "0.3.7"
tokio = { version = "1", features = ["full"] }
megalodon = "0.13.5"
platform-dirs = "0.3.0"
rmp-serde = "1.3.0"
serde_with = "3.8.1"
mime_guess = "2.0.4"
[build-dependencies]
vcpkg = "0.2.15"
[profile.release]
strip = true
opt-level = 's'
lto = true
debug = 0
codegen-units = 1
panic = 'abort'