From 7438e7f2f55d2a674b85798b068167ff1e9d2647 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 23 Oct 2025 04:29:31 +0000
Subject: [PATCH] build(deps): bump winreg from 0.52.0 to 0.55.0 in /rust
(#10641)
Bumps [winreg](https://github.com/gentoo90/winreg-rs) from 0.52.0 to
0.55.0.
Release notes
Sourced from winreg's
releases.
0.55.0 (windows-sys)
- Breaking change: Increate MSRV to 1.60
- Breaking change: Upgrade
windows-sys to version 0.59
(#77)
0.54.0 (windows-sys)
- Breaking change: Migrate to the 2021 edition of Rust (MSRV
1.56)
- Breaking change: Upgrade
windows-sys to version 0.52
(closes #63,
#70)
0.53.0 (windows-sys)
- Don't stop deserialization of
Any due to
REG_NONE (pullrequest #67,
fixes #66)
- Implement (de)serialization of
Option (#56)
- Add
RegKey methods for creating/opening subkeys with
custom options (#65)
Changelog
Sourced from winreg's
changelog.
0.55.0
- Breaking change: Increate MSRV to 1.60
- Breaking change: Upgrade
windows-sys to version 0.59
(#77)
0.54.0
- Breaking change: Migrate to the 2021 edition of Rust (MSRV
1.56)
- Breaking change: Upgrade
windows-sys to version 0.52
(closes #63,
#70)
0.15.0, 0.53.0
- Don't stop deserialization of
Any due to
REG_NONE (pullrequest #67,
fixes #66)
- Implement (de)serialization of
Option (#56)
- Add
RegKey methods for creating/opening subkeys with
custom options (#65)
Commits
9243b23
Bump version to 0.55.0
f044074
Upgrade windows-sys to version 0.59 (and MSRV to 1.60)
4574feb
Bump version to 0.54.0
105ca7a
Upgrade windows-sys to version 0.52
93aefdf
Migrate to the 2021 edition of Rust
c9315d0
Clippy: remove unnecessary typecasts
e62111e
Merge branch 'winapi'
049035f
Update the transaction example in the docs
5baac5d
CI: upgrade actions to the latest versions
cbaeb4e
CI: check Cargo.toml formatting
- Additional commits viewable 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 this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Eizinger
---
rust/Cargo.lock | 14 ++++++++++++--
rust/Cargo.toml | 2 +-
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 955ddf5b5..5e2d8f64e 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -2384,7 +2384,7 @@ dependencies = [
"windows",
"windows-core",
"windows-implement",
- "winreg 0.52.0",
+ "winreg 0.55.0",
"wintun",
"zbus 5.11.0",
]
@@ -2503,7 +2503,7 @@ dependencies = [
"uuid",
"windows",
"windows-service",
- "winreg 0.52.0",
+ "winreg 0.55.0",
"zip",
]
@@ -9666,6 +9666,16 @@ dependencies = [
"windows-sys 0.48.0",
]
+[[package]]
+name = "winreg"
+version = "0.55.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
+dependencies = [
+ "cfg-if",
+ "windows-sys 0.59.0",
+]
+
[[package]]
name = "wintun"
version = "0.5.1"
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 120b4ad7b..a2c9b01d0 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -206,7 +206,7 @@ windows = "0.61.3"
windows-core = "0.61.1"
windows-implement = "0.60.0"
windows-service = "0.8.0"
-winreg = "0.52.0"
+winreg = "0.55.0"
zbus = "5.11.0"
zip = { version = "5", default-features = false }