2022-06-29 00:59:20 +03:00
|
|
|
[package]
|
|
|
|
name = "anime-game-launcher"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Anime Game launcher"
|
|
|
|
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
|
|
|
license = "GPL-3.0"
|
|
|
|
edition = "2021"
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gtk4 = "0.4"
|
|
|
|
libadwaita = "0.1"
|
2022-06-30 22:40:25 +03:00
|
|
|
|
2022-06-29 00:59:20 +03:00
|
|
|
anime-game-core = { path = "anime-game-core", features = ["all"] }
|
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 15:53:51 +03:00
|
|
|
tokio = { version = "1.19.2", features = ["rt", "rt-multi-thread", "macros"] }
|
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"
|