From 81e738d793e8a871cc84b22d89f423bcdebc97e0 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Sun, 17 Nov 2024 09:08:25 -0500 Subject: [PATCH 1/2] Update os_pipe dev-dep. from 0.9.0 to 1.2.1 (latest) Version 1.0.0 stabilized the 0.9.0 API without changes: https://github.com/oconnor663/os_pipe.rs/releases/tag/1.0.0 Version 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. --- cargo-insta/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 3b7d1f3d5d72c16a0c43262212bf31ee6042ec7c Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Sun, 17 Nov 2024 09:12:16 -0500 Subject: [PATCH 2/2] Update Cargo.lock for os_pipe 1.2.1 --- Cargo.lock | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 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"