-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
41 lines (34 loc) · 1.04 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
[package]
name = "yap"
version = "5.2.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.winres]
LegalCopyright = "Copyright Alex-Beng © 2024"
FileDescription = "Yap for Genshin"
[dependencies]
image = "0.25.1"
imageproc = "0.25.0"
rayon = "1.5.1"
serde_json = "1.0.68"
serde = { version = "1.0.130", features = ["derive"]}
reqwest = { version = "0.12.5", features = ["blocking", "json"] }
log = "0.4.14"
tract-onnx = "0.21.5"
env_logger = "0.11.3"
enigo = "0.2.1"
clap = "2.33.3"
semver = "1.0.7"
hotkey = "0.3.1"
rand = "0.8"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["errhandlingapi", "winuser", "winbase", "wingdi", "winnt", "securitybaseapi", "libloaderapi", "shellscalingapi"] }
# always use target build-dependencies for winres so that
# it won't get pulled for non-windows OSs (saves them resources)
[build-dependencies]
winres = "0.1.12"
[profile.release]
panic = "abort"
strip = true
codegen-units = 4