2022-06-29 00:59:20 +03:00
|
|
|
[package]
|
|
|
|
name = "anime-game-launcher"
|
2022-09-18 15:19:26 +03:00
|
|
|
version = "1.1.0"
|
2022-06-29 00:59:20 +03: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 18:34:46 +03:00
|
|
|
[profile.release]
|
|
|
|
strip = true
|
|
|
|
lto = true
|
2022-08-02 20:26:10 +03:00
|
|
|
opt-level = 3
|
2022-07-26 18:34:46 +03:00
|
|
|
|
2022-07-24 15:02:14 +03:00
|
|
|
[build-dependencies]
|
2022-09-24 17:52:31 +03:00
|
|
|
gtk = { package = "gtk4", version = "0.4", features = ["v4_8"] }
|
2022-07-24 15:02:14 +03:00
|
|
|
|
2022-06-29 00:59:20 +03:00
|
|
|
[dependencies]
|
2022-09-24 17:52:31 +03:00
|
|
|
gtk = { package = "gtk4", version = "0.4", features = ["v4_8"] }
|
|
|
|
adw = { package = "libadwaita", version = "0.2.0-alpha.3", features = ["v1_2"] }
|
2022-09-14 14:36:08 +03:00
|
|
|
rfd = { version = "0.10", features = ["xdg-portal"], default-features = false }
|
2022-06-30 22:40:25 +03:00
|
|
|
|
2022-08-31 21:27:52 +03:00
|
|
|
anime-game-core = { path = "anime-game-core", features = ["all", "static", "genshin"] }
|
2022-06-30 22:40:25 +03:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-07-01 13:20:08 +03:00
|
|
|
serde_json = "1.0"
|
2022-06-30 22:40:25 +03:00
|
|
|
|
|
|
|
dirs = "4.0.0"
|
2022-07-14 23:34:01 +03:00
|
|
|
wait_not_await = "0.2.1"
|
2022-07-23 18:08:50 +03:00
|
|
|
regex = "1.6.0"
|
|
|
|
lazy_static = "1.4.0"
|
2022-08-31 21:27:52 +03:00
|
|
|
anyhow = "1.0"
|
2022-09-12 00:42:58 +03:00
|
|
|
md5 = "0.7"
|