mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-22 12:49:02 +03:00
bd41ba30ef
From previous commits: - updated core library; now launcher will try to repair failed that were unnable to be patched by the hdiff patcher - updated components list with new soda version - limited dxvk and wine versions Now total amount is 12 versions, where (first) 6 are recommended - code refactoring based on clippy warnings - fixed about window re-opening issue - fixed game files repairing
35 lines
977 B
TOML
35 lines
977 B
TOML
[package]
|
|
name = "anime-game-launcher"
|
|
version = "1.2.0"
|
|
description = "Anime Game launcher"
|
|
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
opt-level = 3
|
|
|
|
[build-dependencies]
|
|
gtk = { package = "gtk4", version = "0.4", features = ["v4_8"] }
|
|
|
|
[dependencies]
|
|
gtk = { package = "gtk4", version = "0.4", features = ["v4_8"] }
|
|
adw = { package = "libadwaita", version = "0.2.0-alpha.3", features = ["v1_2"] }
|
|
rfd = { version = "0.10", features = ["xdg-portal"], default-features = false }
|
|
|
|
anime-game-core = { path = "anime-game-core", features = ["all", "static", "genshin"] }
|
|
wincompatlib = { version = "0.1.2", features = ["dxvk"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
dirs = "4.0.0"
|
|
wait_not_await = "0.2.1"
|
|
regex = "1.6.0"
|
|
lazy_static = "1.4.0"
|
|
anyhow = "1.0"
|
|
md5 = "0.7"
|
|
cached = { version = "0.39", features = ["proc_macro"]}
|