From f2a41cda084dcc287dcb1cd792e242b96a4d55c6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 20:56:40 +0000 Subject: [PATCH] fix(deps): update rust crate shlex to v2 --- Cargo.lock | 10 ++++++++-- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c0f447e..b0f1231 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d" dependencies = [ "find-msvc-tools", - "shlex", + "shlex 1.3.0", ] [[package]] @@ -334,7 +334,7 @@ dependencies = [ "serde_yaml", "sha2 0.11.0", "shell-words", - "shlex", + "shlex 2.0.1", "simplelog", "structopt", "tempfile", @@ -1047,6 +1047,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + [[package]] name = "simplelog" version = "0.12.2" diff --git a/Cargo.toml b/Cargo.toml index b3e0e76..09e3174 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ uuid = { version = "1.16", features = ["v4"] } yaml-rust2 = "0.11.0" simplelog = "0.12" nix = { version = "0.31", default-features = false, features = ["user"] } -shlex = "1.3" +shlex = "2.0" sha2 = "0.11.0" anyhow = "1.0.98" thiserror = "2.0.12"