From 5b2ef7a3269824b0859c4eefb211f51c4423f46b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 29 Jan 2024 16:19:30 +0000
Subject: [PATCH] build(deps): Bump winreg from 0.51.0 to 0.52.0 in /rust
(#3420)
Bumps [winreg](https://github.com/gentoo90/winreg-rs) from 0.51.0 to
0.52.0.
Release notes
Sourced from winreg's
releases.
0.52.0 (windows-rs)
- Breaking change:
.commit() and .rollback()
now consume the transaction (#62)
- Add
RegKey::rename_subkey() method (#58)
- Make serialization modules public (#59)
- Fix UB in
FromRegValue for u32 and
u64 (#61)
Changelog
Sourced from winreg's
changelog.
0.52.0
- Breaking change:
.commit() and .rollback()
now consume the transaction (#62)
- Add
RegKey::rename_subkey() method (#58)
- Make serialization modules public (#59)
- Fix UB in
FromRegValue for u32 and
u64 (#61)
0.14.0
- Breaking change: increase MSRV to 1.34
- Fix UB in
FromRegValue for u32 and
u64 (#61)
0.13.0
- Breaking change:
.commit() and .rollback()
now consume the transaction (#62)
- Add
RegKey::rename_subkey() method (#58)
- Make serialization modules public (#59)
Commits
1c56127
Merge branch 'winapi'. Bump version to 0.52.0
4b0ba3e
Bump version to 0.14.0
7634148
Fix UB in FromRegValue for u32 and
u64
9aea2ad
Bump version to 0.13.0
5312581
Fix build with rust 1.31
ecda498
Make serialization modules public.
0fd5bb8
.commit() and .rollback() now consume the
transaction
fa2f1c8
Add RegKey::rename_subkey() method
- See full diff in compare
view
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
rust/Cargo.lock | 12 +++++++++++-
rust/windows-client/src-tauri/Cargo.toml | 2 +-
2 files changed, 12 insertions(+), 2 deletions(-)
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]