2022-06-28 23:59:20 +02:00
|
|
|
[package]
|
|
|
|
name = "anime-game-launcher"
|
2023-01-28 19:09:11 +02:00
|
|
|
version = "1.2.5"
|
2022-06-28 23:59:20 +02:00
|
|
|
description = "Anime Game launcher"
|
|
|
|
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
|
|
|
license = "GPL-3.0"
|
|
|
|
edition = "2021"
|
|
|
|
build = "build.rs"
|
|
|
|
|
2022-07-26 17:34:46 +02:00
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
lto = true
|
2022-08-02 19:26:10 +02:00
|
|
|
opt-level = 3
|
2022-07-26 17:34:46 +02:00
|
|
|
|
2022-07-24 14:02:14 +02:00
|
|
|
[build-dependencies]
|
2022-12-07 11:24:57 +02:00
|
|
|
glib-build-tools = "0.16"
|
2022-07-24 14:02:14 +02:00
|
|
|
|
2022-06-28 23:59:20 +02:00
|
|
|
[dependencies]
|
2022-11-02 19:01:57 +02:00
|
|
|
gtk = { package = "gtk4", version = "0.5", features = ["v4_8"] }
|
|
|
|
adw = { package = "libadwaita", version = "0.2", features = ["v1_2"] }
|
2022-09-14 13:36:08 +02:00
|
|
|
rfd = { version = "0.10", features = ["xdg-portal"], default-features = false }
|
2022-06-30 21:40:25 +02:00
|
|
|
|
2022-08-31 20:27:52 +02:00
|
|
|
anime-game-core = { path = "anime-game-core", features = ["all", "static", "genshin"] }
|
2023-01-28 00:10:17 +02:00
|
|
|
wincompatlib = "0.2.0"
|
2022-06-30 21:40:25 +02:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-07-01 12:20:08 +02:00
|
|
|
serde_json = "1.0"
|
2022-06-30 21:40:25 +02:00
|
|
|
|
|
|
|
dirs = "4.0.0"
|
2022-07-14 22:34:01 +02:00
|
|
|
wait_not_await = "0.2.1"
|
2022-07-23 17:08:50 +02:00
|
|
|
lazy_static = "1.4.0"
|
2022-08-31 20:27:52 +02:00
|
|
|
anyhow = "1.0"
|
2022-09-11 23:42:58 +02:00
|
|
|
md5 = "0.7"
|
2023-01-28 00:10:17 +02:00
|
|
|
cached = { version = "0.42", features = ["proc_macro"] }
|
2023-01-28 12:40:42 +02:00
|
|
|
discord-rich-presence = "0.2.3"
|