diff --git a/Cargo.lock b/Cargo.lock index 95a404da4d4..64619e86f97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2372,6 +2372,12 @@ dependencies = [ "syn 2.0.95", ] +[[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.8.4" @@ -3801,7 +3807,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -4767,7 +4773,7 @@ dependencies = [ "tokio-retry", "tracing", "url", - "which 6.0.3", + "which 7.0.2", ] [[package]] @@ -5681,7 +5687,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" dependencies = [ "anyhow", - "itertools 0.12.1", + "itertools 0.13.0", "proc-macro2", "quote", "syn 2.0.95", @@ -8478,12 +8484,12 @@ dependencies = [ [[package]] name = "which" -version = "6.0.3" +version = "7.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +checksum = "2774c861e1f072b3aadc02f8ba886c26ad6321567ecc294c935434cad06f1283" dependencies = [ "either", - "home", + "env_home", "rustix", "winsafe", ] diff --git a/NOTICE.md b/NOTICE.md index 4217f97fb1e..0b4fa055216 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -188,6 +188,7 @@ This file contains attributions for any 3rd-party open source code used in this | endian-type | MIT | https://crates.io/crates/endian-type | | enumflags2 | MIT, Apache-2.0 | https://crates.io/crates/enumflags2 | | enumflags2_derive | MIT, Apache-2.0 | https://crates.io/crates/enumflags2_derive | +| env_home | MIT, Apache-2.0 | https://crates.io/crates/env_home | | equivalent | Apache-2.0, MIT | https://crates.io/crates/equivalent | | errno | MIT, Apache-2.0 | https://crates.io/crates/errno | | error-code | BSL-1.0 | https://crates.io/crates/error-code | diff --git a/implementations/rust/ockam/ockam_command/Cargo.toml b/implementations/rust/ockam/ockam_command/Cargo.toml index 5292dca6162..910029341dc 100644 --- a/implementations/rust/ockam/ockam_command/Cargo.toml +++ b/implementations/rust/ockam/ockam_command/Cargo.toml @@ -96,7 +96,7 @@ tokio = { version = "1.41.0", features = ["full"] } tokio-retry = "0.3" tracing = { version = "0.1", default-features = false } url = "2.5.2" -which = "6.0.2" +which = "7.0.2" [dev-dependencies] assert_cmd = "2"