sleepy-launcher/Cargo.toml

50 lines
1.2 KiB
TOML
Raw Normal View History

2022-06-29 00:59:20 +03:00
[package]
2024-07-04 09:17:28 +03:00
name = "sleepy-launcher"
2024-10-09 23:38:29 +03:00
version = "1.3.0"
2024-07-04 09:17:28 +03:00
description = "Sleepy launcher"
2024-08-16 15:39:59 +03:00
authors = ["Nikita Podvirnyi <krypt0nn@vk.com>"]
2024-07-04 09:17:28 +03:00
homepage = "https://github.com/an-anime-team/sleepy-launcher"
repository = "https://github.com/an-anime-team/sleepy-launcher"
2022-06-29 00:59:20 +03:00
license = "GPL-3.0"
edition = "2021"
build = "build.rs"
[profile.release]
strip = true
lto = true
opt-level = "s"
[build-dependencies]
2024-07-19 13:28:41 +03:00
glib-build-tools = "0.20"
2023-03-25 12:11:10 +03:00
[dependencies.anime-launcher-sdk]
2023-04-16 15:18:49 +03:00
git = "https://github.com/an-anime-team/anime-launcher-sdk"
2024-10-09 23:10:20 +03:00
tag = "1.22.0"
features = ["all", "zzz"]
2023-03-25 12:11:10 +03:00
2023-04-16 15:18:49 +03:00
# path = "../anime-launcher-sdk" # ! for dev purposes only
2022-06-29 00:59:20 +03:00
[dependencies]
2024-07-19 13:28:41 +03: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 18:58:23 +03:00
2024-10-09 23:10:20 +03:00
rfd = { version = "0.15.0", features = ["xdg-portal", "tokio"], default-features = false }
2024-07-19 13:28:41 +03:00
open = "5.3.0"
whatadistro = "0.1.0"
2023-04-17 12:45:28 +03:00
serde_json = "1.0"
2023-04-16 15:18:49 +03:00
anyhow = "1.0"
lazy_static = "1.5.0"
2024-08-02 11:45:39 +03:00
cached = { version = "0.53", features = ["proc_macro"] }
2023-04-16 15:18:49 +03:00
md-5 = { version = "0.10", features = ["asm"] }
2024-03-24 13:08:14 +03:00
enum-ordinalize = "4.3"
2023-04-16 15:18:49 +03:00
2023-01-18 19:37:53 +03:00
tracing = "0.1"
tracing-subscriber = "0.3"
2023-01-18 19:37:53 +03:00
2024-10-09 23:10:20 +03:00
fluent-templates = "0.11"
2023-01-18 19:37:53 +03:00
unic-langid = "0.9"
2024-08-02 11:45:39 +03:00
human-panic = "2.0.1"