-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
78 lines (71 loc) · 1.94 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "quicktag"
version = "0.7.0"
edition = "2021"
[dependencies]
# General
anyhow = "1.0.75"
bytemuck = "1.14.1"
chrono = "0.4.31"
clap = { version = "4.3.11", features = ["derive"] }
env_logger = "0.11.3"
game-detector = "0.1.4"
itertools = "0.13"
indexmap = "2.2.6"
lazy_static = "1.4.0"
linked-hash-map = "0.5.6"
log = "0.4.20"
parking_lot = "0.12.1"
profiling = { version = "1.0.15", features = [] }
rustc-hash = "2.0.0"
# UI
eframe = { version = "0.28.1", default-features = false, features = [
"default_fonts",
"wayland",
"x11",
"persistence",
"wgpu",
] }
egui_extras = "0.28.1"
egui-notify = "0.15.0"
native-dialog = "0.7.0"
opener = "0.7.0"
poll-promise = { version = "0.3.0", features = ["tokio"] }
rayon = "1.8.0"
# (de)serialization
base64 = "0.22.0"
bincode = "2.0.0-rc.3"
binrw = "0.13.3"
destiny-pkg = { version = "0.14.0" }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.108"
vgmstream = { git = "https://github.com/cohaereo/vgmstream-rs/", version = "0.1.5", optional = true }
wav = "1.0.0"
zstd = { version = "0.13.0", features = ["zstdmt"] }
either = "1.10.0"
tokio = { version = "1.37.0", features = ["rt", "macros"] }
image = { version = "0.25.1", features = ["png"], default-features = false }
regex = "1.10.4"
clipboard-win = "5.3.1"
rodio = "0.18.1"
# tiger-parse structure crates
# alkahest-data = { git = "https://github.com/cohaereo/alkahest.git" }
arc-swap = "1.7.1"
notify = "7.0.0"
#cryptarch-data = { git = "https://github.com/v4nguard/cryptarch.git" }
#dawn-data = { git = "https://github.com/cohaereo/dawn.git" }
[features]
default = ["wordlist", "audio"]
# Embeds `wordlist.txt` into the executable and adds it's contents to the raw string list
wordlist = []
audio = ["vgmstream"]
[profile.dev]
opt-level = 3
# cohae: Overflow checks are nice for some, but not for us
overflow-checks = false
[profile.release]
debug = "limited"
#opt-level = 3
# strip = "symbols"
# lto = "fat"
# debug = 1