diff --git a/Cargo.lock b/Cargo.lock index 3a9e2d128..42666ea3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1745,6 +1745,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.11.8" @@ -8368,13 +8374,12 @@ dependencies = [ [[package]] name = "which" -version = "6.0.3" +version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f" +checksum = "d3fabb953106c3c8eea8306e4393700d7657561cb43122571b172bbfb7c7ba1d" dependencies = [ - "either", - "home", - "rustix 0.38.44", + "env_home", + "rustix 1.1.2", "winsafe", ] diff --git a/crates/terraphim_onepassword_cli/Cargo.toml b/crates/terraphim_onepassword_cli/Cargo.toml index 8e203cf60..16cc2e0e8 100644 --- a/crates/terraphim_onepassword_cli/Cargo.toml +++ b/crates/terraphim_onepassword_cli/Cargo.toml @@ -39,7 +39,7 @@ reqwest = { workspace = true, features = ["json"], optional = true } env = "1.0" # Process handling for op CLI -which = "6.0" +which = "8.0" # Jiff for time handling (as per rules) jiff = "0.2"