mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-03-15 14:38:29 +03:00
feat: update non-ui dependencies
This commit is contained in:
parent
58398b03e7
commit
9395750412
3 changed files with 310 additions and 363 deletions
657
Cargo.lock
generated
657
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,7 @@ lto = true
|
|||
opt-level = "s"
|
||||
|
||||
[build-dependencies]
|
||||
glib-build-tools = "0.18"
|
||||
glib-build-tools = "0.19"
|
||||
|
||||
[dependencies.anime-launcher-sdk]
|
||||
git = "https://github.com/an-anime-team/anime-launcher-sdk"
|
||||
|
@ -29,20 +29,20 @@ relm4 = { version = "0.7.0-beta.2", features = ["macros", "libadwaita"] }
|
|||
gtk = { package = "gtk4", version = "0.7.3", features = ["v4_12"] }
|
||||
adw = { package = "libadwaita", version = "0.5.3", features = ["v1_3"] }
|
||||
|
||||
rfd = { version = "0.12.1", features = ["xdg-portal"], default-features = false }
|
||||
rfd = { version = "0.14.1", features = ["xdg-portal", "tokio"], default-features = false }
|
||||
open = "5.0.0"
|
||||
whatadistro = "0.1.0"
|
||||
|
||||
serde_json = "1.0"
|
||||
anyhow = "1.0"
|
||||
lazy_static = "1.4.0"
|
||||
cached = { version = "0.46", features = ["proc_macro"] }
|
||||
cached = { version = "0.49", features = ["proc_macro"] }
|
||||
md-5 = { version = "0.10", features = ["asm"] }
|
||||
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
|
||||
fluent-templates = "0.8"
|
||||
fluent-templates = "0.9"
|
||||
unic-langid = "0.9"
|
||||
|
||||
human-panic = "1.2.2"
|
||||
|
|
|
@ -106,9 +106,7 @@ macro_rules! tr {
|
|||
use fluent_templates::Loader;
|
||||
|
||||
#[allow(unused_unsafe)]
|
||||
$crate::i18n::LOCALES
|
||||
.lookup(unsafe { &$crate::i18n::LANG }, $id)
|
||||
.expect(&format!("Failed to find a message with given id: {}", stringify!($id)))
|
||||
$crate::i18n::LOCALES.lookup(unsafe { &$crate::i18n::LANG }, $id)
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -126,9 +124,7 @@ macro_rules! tr {
|
|||
)*
|
||||
|
||||
#[allow(unused_unsafe)]
|
||||
$crate::i18n::LOCALES
|
||||
.lookup_complete(unsafe { &$crate::i18n::LANG }, $id, Some(&args))
|
||||
.expect(&format!("Failed to find a message with given id: {}", stringify!($id)))
|
||||
$crate::i18n::LOCALES.lookup_complete(unsafe { &$crate::i18n::LANG }, $id, Some(&args))
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue