sleepy-launcher/Cargo.toml

49 lines
1.3 KiB
TOML
Raw Normal View History

2022-06-28 23:59:20 +02:00
[package]
name = "anime-game-launcher"
2023-07-15 14:53:45 +02:00
version = "3.7.6"
2022-06-28 23:59:20 +02:00
description = "Anime Game launcher"
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.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 23:59:20 +02:00
license = "GPL-3.0"
edition = "2021"
build = "build.rs"
[profile.release]
strip = true
lto = true
opt-level = "s"
[build-dependencies]
glib-build-tools = "0.17"
2023-03-25 11:11:10 +02:00
[dependencies.anime-launcher-sdk]
2023-04-16 14:18:49 +02:00
git = "https://github.com/an-anime-team/anime-launcher-sdk"
tag = "1.8.13"
2023-06-11 10:57:55 +02:00
features = ["all", "genshin", "genshin-patch"]
2023-03-25 11:11:10 +02:00
2023-04-16 14:18:49 +02:00
# path = "../anime-launcher-sdk" # ! for dev purposes only
2022-06-28 23:59:20 +02:00
[dependencies]
2023-06-08 15:18:57 +02:00
relm4 = { version = "0.6.0", features = ["macros", "libadwaita"] }
gtk = { package = "gtk4", version = "0.6", features = ["v4_8"] }
2023-06-08 15:18:57 +02:00
adw = { package = "libadwaita", version = "0.4", features = ["v1_2"] }
2023-04-09 17:58:23 +02:00
rfd = { version = "0.11", features = ["xdg-portal"], default-features = false }
2023-04-09 17:58:23 +02:00
open = "4.0"
whatadistro = "0.1.0"
2023-04-17 11:45:28 +02:00
serde_json = "1.0"
2023-04-16 14:18:49 +02:00
anyhow = "1.0"
lazy_static = "1.4.0"
2023-06-08 11:44:38 +02:00
cached = { version = "0.44", features = ["proc_macro"] }
2023-04-16 14:18:49 +02:00
md-5 = { version = "0.10", features = ["asm"] }
2023-01-18 18:37:53 +02:00
tracing = "0.1"
tracing-subscriber = "0.3"
2023-01-18 18:37:53 +02:00
fluent-templates = "0.8"
unic-langid = "0.9"
human-panic = "1.1.5"