From 712c3ab7f7209d4a199cbf36426a8465284b3709 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:14:50 +0000 Subject: [PATCH] Bump which from 7.0.0 to 7.0.1 (#1883) Bumps [which](https://github.com/harryfei/which-rs) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/harryfei/which-rs/releases) - [Changelog](https://github.com/harryfei/which-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/harryfei/which-rs/compare/7.0.0...7.0.1) --- updated-dependencies: - dependency-name: which dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 21 +++++++++------------ crates/build/Cargo.toml | 2 +- crates/cargo-contract/Cargo.toml | 4 ++-- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2f9f522b8..1fa2c783d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3179,6 +3179,12 @@ dependencies = [ "syn 2.0.90", ] +[[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.10.2" @@ -4119,15 +4125,6 @@ dependencies = [ "hmac 0.8.1", ] -[[package]] -name = "home" -version = "0.5.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" -dependencies = [ - "windows-sys 0.52.0", -] - [[package]] name = "http" version = "1.1.0" @@ -13350,12 +13347,12 @@ dependencies = [ [[package]] name = "which" -version = "7.0.0" +version = "7.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9cad3279ade7346b96e38731a641d7343dd6a53d55083dd54eadfa5a1b38c6b" +checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028" dependencies = [ "either", - "home", + "env_home", "rustix 0.38.41", "winsafe", ] diff --git a/crates/build/Cargo.toml b/crates/build/Cargo.toml index e31feb74a..ce62049fc 100644 --- a/crates/build/Cargo.toml +++ b/crates/build/Cargo.toml @@ -39,7 +39,7 @@ tempfile = "3.10.1" term_size = "0.3.2" url = { version = "2.5.4", features = ["serde"] } wasm-opt = { version = "=0.116.1", default-features = false } -which = "7.0.0" +which = "7.0.1" zip = { version = "2.2.2", default-features = false } strum = { version = "0.26", features = ["derive"] } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } diff --git a/crates/cargo-contract/Cargo.toml b/crates/cargo-contract/Cargo.toml index fbed867f6..ba631aaa7 100644 --- a/crates/cargo-contract/Cargo.toml +++ b/crates/cargo-contract/Cargo.toml @@ -29,7 +29,7 @@ clap = { version = "4.5.23", features = ["derive", "env"] } primitive-types = { version = "0.13.1", default-features = false, features = ["codec", "scale-info", "serde"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } -which = "7.0.0" +which = "7.0.1" colored = "2.1.0" regex = "1" serde_json = "1.0.133" @@ -53,7 +53,7 @@ hex = "0.4.3" anyhow = "1.0.94" substrate-build-script-utils = "11.0.0" current_platform = "0.2.0" -which = "7.0.0" +which = "7.0.1" [dev-dependencies] assert_cmd = "2.0.14"