From c5700b4a348d4551eef9a38cd694eb1068a8b5eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Feb 2023 12:50:47 +1300 Subject: [PATCH] Bump os_pipe from 1.0.0 to 1.1.3 in /src/agent (#2795) Bumps [os_pipe](https://github.com/oconnor663/os_pipe.rs) from 1.0.0 to 1.1.3. - [Release notes](https://github.com/oconnor663/os_pipe.rs/releases) - [Commits](https://github.com/oconnor663/os_pipe.rs/compare/1.0.0...1.1.3) --- updated-dependencies: - dependency-name: os_pipe dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src/agent/Cargo.lock | 30 +++++++++++++++++++++++++++--- src/agent/win-util/Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 4 deletions(-) diff --git a/src/agent/Cargo.lock b/src/agent/Cargo.lock index 8f1cb4db7..2240bcaf1 100644 --- a/src/agent/Cargo.lock +++ b/src/agent/Cargo.lock @@ -2321,12 +2321,12 @@ dependencies = [ [[package]] name = "os_pipe" -version = "1.0.0" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e3492ebca331b895fe23ed427dce2013d9b2e00c45964f12040b0db38b8ab27" +checksum = "a53dbb20faf34b16087a931834cba2d7a73cc74af2b7ef345a4c8324e2409a12" dependencies = [ "libc", - "winapi", + "windows-sys 0.45.0", ] [[package]] @@ -4168,6 +4168,30 @@ dependencies = [ "windows_x86_64_msvc 0.42.1", ] +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.42.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc 0.42.1", + "windows_i686_gnu 0.42.1", + "windows_i686_msvc 0.42.1", + "windows_x86_64_gnu 0.42.1", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc 0.42.1", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.1" diff --git a/src/agent/win-util/Cargo.toml b/src/agent/win-util/Cargo.toml index 3c55717b7..9ef35c2d1 100644 --- a/src/agent/win-util/Cargo.toml +++ b/src/agent/win-util/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" anyhow = "1.0" atexit = { path = "../atexit" } log = "0.4" -os_pipe = "1.0" +os_pipe = "1.1" [target.'cfg(windows)'.dependencies] winreg = "0.10"