-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 1.07 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
[package]
name = "eternal_mod_manager"
description = "Cross platform mod manager for DOOM Eternal."
version = "4.2.3"
authors = ["Bruno Ancona <brunoanconasala@gmail.com>"]
license = "MIT"
repository = "https://github.com/brunoanc/EternalModManager"
homepage = "https://flathub.org/apps/io.github.brunoanc.eternalmodmanager"
edition = "2024"
[dependencies]
adw = { version = "0.9.1", package = "libadwaita", features = ["v1_5"] }
gtk = { version = "0.11.1", package = "gtk4", features = ["v4_14"] }
reqwest = { version = "0.13.2", features = ["blocking"] }
zip = { version = "8.4.0", default-features = false, features = ["deflate"] }
notify-debouncer-mini = { version = "0.7.0", default-features = false }
arboard = { version = "3.6.1", features = ["wayland-data-control"] }
serde_json = "1.0.149"
im = "15.1.0"
open = "5.3.3"
walkdir = "2.5.0"
once_cell = "1.21.4"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.62.2", features = ["UI_ViewManagement"] }
[build-dependencies]
winresource = "0.1.31"
[profile.release]
panic = "abort"
strip = true
codegen-units = 1
lto = true