From 6d3d35f972304435c73e70f8fc2e44ddd09fc583 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Apr 2023 02:17:03 +0000 Subject: [PATCH] Bump winreg from 0.10.1 to 0.50.0 in /src/agent Bumps [winreg](https://github.com/gentoo90/winreg-rs) from 0.10.1 to 0.50.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.10.1...v0.50.0) --- updated-dependencies: - dependency-name: winreg dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/agent/Cargo.lock | 13 +++++++------ src/agent/dynamic-library/Cargo.toml | 2 +- src/agent/onefuzz/Cargo.toml | 2 +- src/agent/win-util/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 6abcd2ccb21..ca2f95ccbbd 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -808,7 +808,7 @@ dependencies = [ "regex", "thiserror", "winapi 0.3.9", - "winreg 0.10.1", + "winreg 0.50.0", ] [[package]] @@ -2088,7 +2088,7 @@ dependencies = [ "urlparse", "uuid", "winapi 0.3.9", - "winreg 0.10.1", + "winreg 0.50.0", ] [[package]] @@ -3854,7 +3854,7 @@ dependencies = [ "log", "os_pipe", "winapi 0.3.9", - "winreg 0.10.1", + "winreg 0.50.0", ] [[package]] @@ -4101,11 +4101,12 @@ dependencies = [ [[package]] name = "winreg" -version = "0.10.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "winapi 0.3.9", + "cfg-if 1.0.0", + "windows-sys 0.48.0", ] [[package]] diff --git a/src/agent/dynamic-library/Cargo.toml b/src/agent/dynamic-library/Cargo.toml index 77043caaa9e..1fb1fbb49d9 100644 --- a/src/agent/dynamic-library/Cargo.toml +++ b/src/agent/dynamic-library/Cargo.toml @@ -13,7 +13,7 @@ thiserror = "1.0" [target.'cfg(windows)'.dependencies] debugger = { path = "../debugger" } -winreg = "0.10" +winreg = "0.50" [dependencies.winapi] version = "0.3" diff --git a/src/agent/onefuzz/Cargo.toml b/src/agent/onefuzz/Cargo.toml index 90356c4c9e2..c5ed2fef310 100644 --- a/src/agent/onefuzz/Cargo.toml +++ b/src/agent/onefuzz/Cargo.toml @@ -48,7 +48,7 @@ stacktrace-parser = { path = "../stacktrace-parser" } backoff = { version = "0.4", features = ["tokio"] } [target.'cfg(target_family = "windows")'.dependencies] -winreg = "0.10" +winreg = "0.50" input-tester = { path = "../input-tester" } debugger = { path = "../debugger" } winapi = { version = "0.3", features = ["impl-default", "psapi"] } diff --git a/src/agent/win-util/Cargo.toml b/src/agent/win-util/Cargo.toml index 9ef35c2d177..bd7b17acc5e 100644 --- a/src/agent/win-util/Cargo.toml +++ b/src/agent/win-util/Cargo.toml @@ -12,7 +12,7 @@ log = "0.4" os_pipe = "1.1" [target.'cfg(windows)'.dependencies] -winreg = "0.10" +winreg = "0.50" [dependencies.winapi] version = "0.3"