From c8a86a298bac8d53d047e0adbb6feb7d0f09336f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 04:22:27 +0000 Subject: [PATCH] Update Rust crate which to v5 (#749) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 5 +++-- src/odin/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95c6aeb2..6bbc7b26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2089,14 +2089,15 @@ checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" [[package]] name = "which" -version = "4.4.2" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14" dependencies = [ "either", "home", "once_cell", "rustix", + "windows-sys", ] [[package]] diff --git a/src/odin/Cargo.toml b/src/odin/Cargo.toml index 0d205c99..4dd2e055 100644 --- a/src/odin/Cargo.toml +++ b/src/odin/Cargo.toml @@ -31,7 +31,7 @@ handlebars = "4" dotenv = "0.15" log = "0.4" clap = { version = "4.4", features = [ "derive", "env" ] } -which = "4.4" +which = "5.0" serde = { version = "1.0", features = ["derive"], default_features = false } sysinfo = { version = "0.29", default_features = false } serde_json = "1.0"