diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-09-13 20:28:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-13 20:28:17 +0200 |
commit | e685c34c5300e5f1fcd312227a0ae01f80b98a92 (patch) | |
tree | a4a36f9d5bc017356a26bc186a03f2586931d0de /src-tauri | |
parent | f1e59ab3572321955dc6f26f5ddcccff7ee64215 (diff) | |
download | FlightCore-e685c34c5300e5f1fcd312227a0ae01f80b98a92.tar.gz FlightCore-e685c34c5300e5f1fcd312227a0ae01f80b98a92.zip |
chore: bump winreg from 0.50.0 to 0.51.0 in /src-tauri (#523)
Bumps [winreg](https://github.com/gentoo90/winreg-rs) from 0.50.0 to 0.51.0.
- [Release notes](https://github.com/gentoo90/winreg-rs/releases)
- [Changelog](https://github.com/gentoo90/winreg-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gentoo90/winreg-rs/compare/v0.50.0...v0.51.0)
---
updated-dependencies:
- dependency-name: winreg
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'src-tauri')
-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 |