From 91f85e637692fd43a79722ca55f7702307894fe2 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Sun, 17 Nov 2024 13:12:53 -0500 Subject: [PATCH] Update os_pipe dev-dependency in cargo-insta (#686) Updates the `os_pipe` dev-dependency from 0.9.0 to 1.2.1, the latest release. [Version 1.0.0](https://github.com/oconnor663/os_pipe.rs/releases/tag/1.0.0) stabilized the 0.9.0 API without changes. [Version 1.2.0](https://github.com/oconnor663/os_pipe.rs/releases/tag/1.2.0) bumped the MSRV to 1.63; this is fine since `os_pipe` is only used by `cargo-insta`, which has MSRV 1.65.0. Based on discussion in https://github.com/mitsuhiko/insta/pull/633. --- Cargo.lock | 15 ++++++++++++--- cargo-insta/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1225e2c6..86725119 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -506,12 +506,12 @@ dependencies = [ [[package]] name = "os_pipe" -version = "0.9.2" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213" +checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982" dependencies = [ "libc", - "winapi", + "windows-sys 0.59.0", ] [[package]] @@ -959,6 +959,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.42.2" diff --git a/cargo-insta/Cargo.toml b/cargo-insta/Cargo.toml index cb475391..0d6b101b 100644 --- a/cargo-insta/Cargo.toml +++ b/cargo-insta/Cargo.toml @@ -43,4 +43,4 @@ walkdir = "2.3.1" similar = "2.2.1" itertools = "0.10.0" termcolor = "1.1.2" -os_pipe = "0.9.0" +os_pipe = "1.2.1"