chore(deps): update windows-sys crate to 0.59 and global-hotkey to 0.6 (#1665)

* chore(deps): update windows-sys crate to `0.59`

* update global-hotkey as well

* change files
This commit is contained in:
Amr Bashir
2024-08-21 17:04:03 +03:00
committed by GitHub
parent f690777a91
commit 3c52f30ea4
8 changed files with 72 additions and 34 deletions
+5
View File
@@ -5,9 +5,14 @@
use serde::{Serialize, Serializer};
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("{0}")]
GlobalHotkey(String),
#[error(transparent)]
RecvError(#[from] std::sync::mpsc::RecvError),
#[error(transparent)]
Tauri(#[from] tauri::Error),
}
impl Serialize for Error {