sleepy-launcher/Cargo.toml

50 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-28 23:59:20 +02:00
[package]
2024-07-04 08:17:28 +02:00
name = "sleepy-launcher"
2024-09-02 21:30:49 +02:00
version = "1.2.1"
2024-07-04 08:17:28 +02:00
description = "Sleepy launcher"
2024-08-16 14:39:59 +02:00
authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"]
2024-07-04 08:17:28 +02:00
homepage = "https://github.com/an-anime-team/sleepy-launcher"
repository = "https://github.com/an-anime-team/sleepy-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]
2024-07-19 12:28:41 +02:00
glib-build-tools = "0.20"
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"
2024-10-09 22:10:20 +02:00
tag = "1.22.0"
features = ["all", "zzz"]
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]
2024-07-19 12:28:41 +02: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 17:58:23 +02:00
2024-10-09 22:10:20 +02:00
rfd = { version = "0.15.0", features = ["xdg-portal", "tokio"], default-features = false }
2024-07-19 12:28:41 +02:00
open = "5.3.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.5.0"
2024-08-02 10:45:39 +02:00
cached = { version = "0.53", features = ["proc_macro"] }
2023-04-16 14:18:49 +02:00
md-5 = { version = "0.10", features = ["asm"] }
2024-03-24 12:08:14 +02:00
enum-ordinalize = "4.3"
2023-04-16 14:18:49 +02:00
2023-01-18 18:37:53 +02:00
tracing = "0.1"
tracing-subscriber = "0.3"
2023-01-18 18:37:53 +02:00
2024-10-09 22:10:20 +02:00
fluent-templates = "0.11"
2023-01-18 18:37:53 +02:00
unic-langid = "0.9"
2024-08-02 10:45:39 +02:00
human-panic = "2.0.1"