From a92b9b26e0bf4ae45938f298d5768e578864f4d7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 09:05:29 +0000 Subject: [PATCH] fix(deps): update rust crate which to v7 --- Cargo.lock | 14 ++++++++++---- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e36f881d60..a1be660d35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1530,6 +1530,12 @@ dependencies = [ "log", ] +[[package]] +name = "env_home" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe" + [[package]] name = "env_logger" version = "0.11.5" @@ -5722,7 +5728,7 @@ dependencies = [ "update-informer", "url", "urlencoding", - "which 6.0.3", + "which 7.0.1", ] [[package]] @@ -6876,12 +6882,12 @@ dependencies = [ [[package]] name = "which" -version = "6.0.3" +version = "7.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028" dependencies = [ "either", - "home", + "env_home", "rustix", "winsafe", ] diff --git a/Cargo.toml b/Cargo.toml index 9ee5d9b070..44c4abf11c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ update-informer = { version = "1.1.0", default-features = false, features = [ "reqwest", ], optional = true } lazy_static = { workspace = true } -which = { version = "6.0.1", optional = true } +which = { version = "7.0.0", optional = true } async-recursion = "1.1.1" rquickjs = { "version" = "0.7.0", optional = true, features = ["macro"] } strum_macros = "0.26.4"