From bdcb5d43963f66d4200bb2f61230f25c53b1ca2f Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Wed, 25 Jun 2025 07:44:33 -0400 Subject: [PATCH] Update which requirement from 7.0 to 8.0 --- Cargo.lock | 34 ++++++++++++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 37581dae9a..cc6d0cef11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -567,7 +567,7 @@ dependencies = [ "crossterm_winapi", "mio", "parking_lot", - "rustix", + "rustix 0.38.43", "serde", "signal-hook", "signal-hook-mio", @@ -1471,7 +1471,7 @@ dependencies = [ "itoa", "libc", "memmap2", - "rustix", + "rustix 0.38.43", "smallvec", "thiserror 2.0.12", ] @@ -2278,6 +2278,12 @@ version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" +[[package]] +name = "linux-raw-sys" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" + [[package]] name = "litemap" version = "0.7.4" @@ -2990,7 +2996,20 @@ dependencies = [ "bitflags 2.9.1", "errno", "libc", - "linux-raw-sys", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" +dependencies = [ + "bitflags 2.9.1", + "errno", + "libc", + "linux-raw-sys 0.9.4", "windows-sys 0.59.0", ] @@ -3451,7 +3470,7 @@ dependencies = [ "fastrand", "getrandom", "once_cell", - "rustix", + "rustix 0.38.43", "windows-sys 0.59.0", ] @@ -3782,13 +3801,12 @@ checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6" [[package]] name = "which" -version = "7.0.2" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2774c861e1f072b3aadc02f8ba886c26ad6321567ecc294c935434cad06f1283" +checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d" dependencies = [ - "either", "env_home", - "rustix", + "rustix 1.0.7", "winsafe", ] diff --git a/Cargo.toml b/Cargo.toml index bdb5633510..3f9f8b040f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,7 +83,7 @@ two-face = { version = "0.4.3", default-features = false } unicode-segmentation = "1.12" unicode-truncate = "2.0" unicode-width = "0.2" -which = "7.0" +which = "8.0" [build-dependencies] chrono = { version = "0.4", default-features = false, features = ["clock"] }