the-honkers-railway-launcher/Cargo.toml

50 lines
1.3 KiB
TOML
Raw Normal View History

2022-06-28 21:59:20 +00:00
[package]
name = "anime-game-launcher"
2024-07-19 14:08:50 +00:00
version = "3.10.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]
2024-07-19 10:28:41 +00:00
glib-build-tools = "0.20"
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"
2024-07-21 07:02:52 +00:00
tag = "1.16.10"
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]
2024-07-19 10:28:41 +00:00
relm4 = { version = "0.9.0", features = ["macros", "libadwaita"] }
gtk = { package = "gtk4", version = "0.9.0", features = ["v4_12"] }
adw = { package = "libadwaita", version = "0.7.0", features = ["v1_4"] }
2023-04-09 15:58:23 +00:00
2024-03-24 07:43:40 +00:00
rfd = { version = "0.14.1", features = ["xdg-portal", "tokio"], default-features = false }
2024-07-19 10:28:41 +00:00
open = "5.3.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"
2024-07-05 19:46:56 +00:00
lazy_static = "1.5.0"
cached = { version = "0.52", features = ["proc_macro"] }
2023-04-16 12:18:49 +00:00
md-5 = { version = "0.10", features = ["asm"] }
2024-03-24 10:08:14 +00:00
enum-ordinalize = "4.3"
2023-04-16 12:18:49 +00:00
2023-01-18 16:37:53 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"
2023-01-18 16:37:53 +00:00
2024-03-24 07:43:40 +00:00
fluent-templates = "0.9"
2023-01-18 16:37:53 +00:00
unic-langid = "0.9"
2024-05-08 17:19:27 +00:00
human-panic = "2.0.0"