diff --git a/rust/Cargo.lock b/rust/Cargo.lock index f868f0526..7c8214b67 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2181,7 +2181,7 @@ dependencies = [ "uuid", "windows 0.52.0", "windows-implement 0.52.0", - "winreg 0.51.0", + "winreg 0.52.0", "wintun", "zip", ] @@ -8388,6 +8388,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "winreg" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "wintun" version = "0.4.0" diff --git a/rust/windows-client/src-tauri/Cargo.toml b/rust/windows-client/src-tauri/Cargo.toml index 35cae3dd8..346a42789 100644 --- a/rust/windows-client/src-tauri/Cargo.toml +++ b/rust/windows-client/src-tauri/Cargo.toml @@ -53,7 +53,7 @@ bincode = "1.3.3" # Tauri works fine on Linux, but it requires a lot of build-time deps like glib and gdk, so I've blocked it out for now. tauri = { version = "1.5", features = [ "dialog", "notification", "shell-open-api", "system-tray" ] } tauri-utils = "1.5.1" -winreg = "0.51.0" +winreg = "0.52.0" wintun = "0.4.0" [target.'cfg(windows)'.dependencies.windows]