forked from wormtql/yas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 1.01 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
[package]
name = "yas_scanner_genshin"
version = "0.1.16"
edition = "2021"
description = "Genshin Impact item scanner"
repository = "https://github.com/wormtql/yas"
keywords = ["GenshinImpact", "artifacts", "scanner", "ocr"]
license = "GPL-2.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yas = { path = "../yas", package="yas_core", features = ["ort"] }
yas_derive = { path = "../yas-derive", package = "yas_derive" }
anyhow = "1.0"
log = "0.4"
clap = { version = "4.4", features = ["derive", "cargo"] }
image = "0.24"
serde_json = "1.0"
edit-distance = "2.1"
regex = "1.5"
strum = "0.26"
strum_macros = "0.26"
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
env_logger = "0.11"
serde_yaml = "0.9"
csv = "1.3.0"
[target.'cfg(target_os = "windows")'.dependencies]
windows-capture = "1.0.65"
# [profile.release]
# lto = true
# panic = "abort"
# strip = true
[[bin]]
name = "yas_genshin_playground"
path = "src/bin/playground.rs"