diff --git a/Cargo.lock b/Cargo.lock index a8f8d0ce2..50e24a546 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2785,6 +2785,12 @@ dependencies = [ "regex", ] +[[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" @@ -9327,7 +9333,7 @@ dependencies = [ "signal-hook", "signal-hook-tokio", "tokio", - "which 4.4.2", + "which 7.0.1", ] [[package]] @@ -10843,18 +10849,6 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" -[[package]] -name = "which" -version = "4.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" -dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.42", -] - [[package]] name = "which" version = "6.0.3" @@ -10867,6 +10861,18 @@ dependencies = [ "winsafe", ] +[[package]] +name = "which" +version = "7.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028" +dependencies = [ + "either", + "env_home", + "rustix 0.38.42", + "winsafe", +] + [[package]] name = "widestring" version = "1.1.0" diff --git a/crates/tauri-driver/Cargo.toml b/crates/tauri-driver/Cargo.toml index 38b65873a..b5cb0009a 100644 --- a/crates/tauri-driver/Cargo.toml +++ b/crates/tauri-driver/Cargo.toml @@ -27,7 +27,7 @@ pico-args = "0.5" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["macros"] } -which = "4" +which = "7" [target."cfg(unix)".dependencies] signal-hook = "0.3"