-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.04 KB
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
[package]
name = "ggpk-explorer"
version = "1.1.3"
edition = "2021"
[package.metadata.deb]
maintainer = "JuddIsJudd <juddisjudd@example.com>"
copyright = "2024, JuddIsJudd"
license-file = ["LICENSE", "4"]
depends = "$auto"
assets = [
["target/release/ggpk-explorer", "usr/bin/", "755"],
["assets/icon-256x256.png", "usr/share/icons/hicolor/256x256/apps/ggpk-explorer.png", "644"],
]
[dependencies]
eframe = "0.29"
egui = "0.29"
egui_extras = { version = "0.29", features = ["all_loaders"] }
image = { version = "0.25", features = ["dds", "webp", "png"] }
image_dds = "0.7"
ddsfile = "0.5"
memmap2 = "0.9"
byteorder = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
rfd = "0.15"
rodio = "0.19"
reqwest = { version = "0.12", features = ["blocking", "json", "native-tls"] }
thiserror = "2.0"
log = "0.4"
env_logger = "0.11"
libc = "0.2"
walkdir = "2"
chrono = { version = "0.4", features = ["serde"] }
hound = "3.5.1"
semver = "1.0"
open = "5"
[build-dependencies]
cc = "1.2"
bindgen = "0.71"
winres = "0.1"