chore: bump dependencies; fix lifetime warnings for Rust 1.90+

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: If755ceefb970311c7660118cb2019c2c6a6a6964
This commit is contained in:
raf 2025-12-22 16:45:19 +03:00
commit c2182d21dc
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 116 additions and 31 deletions

View file

@ -66,7 +66,7 @@ struct WlPasteArgs {
watch: Option<Vec<String>>,
}
fn get_paste_mime_type(mime_arg: Option<&str>) -> PasteMimeType {
fn get_paste_mime_type(mime_arg: Option<&str>) -> PasteMimeType<'_> {
match mime_arg {
None | Some("text" | "autodetect") => PasteMimeType::Text,
Some(other) => PasteMimeType::Specific(other),