the-honkers-railway-launcher/Cargo.toml

49 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-28 21:59:20 +00:00
[package]
name = "anime-game-launcher"
2023-11-13 19:32:53 +00:00
version = "3.9.2"
2022-06-28 21:59:20 +00:00
description = "Anime Game launcher"
2023-11-13 19:27:44 +00:00
authors = ["Nikita Podvirnyy <krypt0nn@vk.com>"]
homepage = "https://github.com/an-anime-team/an-anime-game-launcher"
repository = "https://github.com/an-anime-team/an-anime-game-launcher"
2022-06-28 21:59:20 +00:00
license = "GPL-3.0"
edition = "2021"
build = "build.rs"
[profile.release]
strip = true
lto = true
opt-level = "s"
[build-dependencies]
2023-08-17 09:54:39 +00:00
glib-build-tools = "0.18"
2023-03-25 09:11:10 +00:00
[dependencies.anime-launcher-sdk]
2023-04-16 12:18:49 +00:00
git = "https://github.com/an-anime-team/anime-launcher-sdk"
2023-11-15 11:12:41 +00:00
tag = "1.12.3"
2023-08-17 09:54:39 +00:00
features = ["all", "genshin"]
2023-03-25 09:11:10 +00:00
2023-04-16 12:18:49 +00:00
# path = "../anime-launcher-sdk" # ! for dev purposes only
2022-06-28 21:59:20 +00:00
[dependencies]
relm4 = { version = "0.7.0-beta.2", features = ["macros", "libadwaita"] }
gtk = { package = "gtk4", version = "0.7.3", features = ["v4_12"] }
adw = { package = "libadwaita", version = "0.5.3", features = ["v1_3"] }
2023-04-09 15:58:23 +00:00
rfd = { version = "0.12.1", features = ["xdg-portal"], default-features = false }
2023-08-17 09:54:39 +00:00
open = "5.0.0"
whatadistro = "0.1.0"
2023-04-17 09:45:28 +00:00
serde_json = "1.0"
2023-04-16 12:18:49 +00:00
anyhow = "1.0"
lazy_static = "1.4.0"
cached = { version = "0.46", features = ["proc_macro"] }
2023-04-16 12:18:49 +00:00
md-5 = { version = "0.10", features = ["asm"] }
2023-01-18 16:37:53 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"
2023-01-18 16:37:53 +00:00
fluent-templates = "0.8"
unic-langid = "0.9"
human-panic = "1.2.2"