diff options
-rw-r--r-- | src-tauri/Cargo.lock | 12 | ||||
-rw-r--r-- | src-tauri/Cargo.toml | 2 |
2 files changed, 12 insertions, 2 deletions
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 19bf788b..9e80895a 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -109,7 +109,7 @@ dependencies = [ "tokio", "ts-rs", "winapi", - "winreg 0.50.0", + "winreg 0.51.0", "zip", "zip-extract", ] @@ -5259,6 +5259,16 @@ dependencies = [ ] [[package]] +name = "winreg" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] name = "wry" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5581b7fb..9186db88 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -69,7 +69,7 @@ dirs = "5" [target.'cfg(windows)'.dependencies] # Windows API stuff winapi = "0.3.9" -winreg = "0.50.0" +winreg = "0.51.0" [features] # by default Tauri runs in production mode |