mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-21 20:27:35 +03:00
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
name = "sleepy-launcher"
|
|
version = "1.0.0"
|
|
description = "Sleepy launcher"
|
|
authors = ["Nikita Podvirnyy <krypt0nn@vk.com>"]
|
|
homepage = "https://github.com/an-anime-team/sleepy-launcher"
|
|
repository = "https://github.com/an-anime-team/sleepy-launcher"
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
opt-level = "s"
|
|
|
|
[build-dependencies]
|
|
glib-build-tools = "0.19"
|
|
|
|
[dependencies.anime-launcher-sdk]
|
|
git = "https://github.com/an-anime-team/anime-launcher-sdk"
|
|
tag = "1.16.0"
|
|
features = ["all", "zzz"]
|
|
|
|
# path = "../anime-launcher-sdk" # ! for dev purposes only
|
|
|
|
[dependencies]
|
|
relm4 = { version = "0.8.1", features = ["macros", "libadwaita"] }
|
|
gtk = { package = "gtk4", version = "0.8.1", features = ["v4_12"] }
|
|
adw = { package = "libadwaita", version = "0.6.0", features = ["v1_4"] }
|
|
|
|
rfd = { version = "0.14.1", features = ["xdg-portal", "tokio"], default-features = false }
|
|
open = "5.2.0"
|
|
whatadistro = "0.1.0"
|
|
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
lazy_static = "1.5.0"
|
|
cached = { version = "0.52", features = ["proc_macro"] }
|
|
md-5 = { version = "0.10", features = ["asm"] }
|
|
enum-ordinalize = "4.3"
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
fluent-templates = "0.9"
|
|
unic-langid = "0.9"
|
|
|
|
human-panic = "2.0.0"
|