mod-manager/Cargo.toml
Tine Jozelj 83c478cfd2
Some checks failed
CI / Rustfmt (push) Failing after 2m10s
CI / Flatpak (push) Failing after 10m55s
feat: loading images
Need to fix the threads as currently it locks the app while loading the images.
2024-01-07 22:35:39 +01:00

25 lines
609 B
TOML

[package]
name = "mod-manager"
version = "0.1.0"
authors = ["Tine Jozelj <tine@tjo.space>"]
edition = "2021"
[profile.release]
lto = true
[dependencies]
gettext-rs = { version = "0.7", features = ["gettext-system"] }
gtk = { version = "0.7", package = "gtk4", features = ["v4_12"] }
tracing = "0.1.37"
tracing-subscriber = "0.3"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
gsettings-macro = "0.1.20"
gdk-pixbuf = "0.18.5"
bytes = "1.5.0"
futures = "0.3.30"
[dependencies.adw]
package = "libadwaita"
version = "0.5"
features = ["v1_4"]