Merge pull request #56 from NotAShelf/notashelf/push-umuwyuqntslp

various: bump dependencies
This commit is contained in:
raf 2025-12-22 17:14:53 +03:00 committed by GitHub
commit 1f0312b2f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 125 additions and 40 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),