From c97f2f10b535ff622f592357146a3b2fcae70b93 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux[bot]" <126015336+red-hat-konflux[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 06:06:28 +0000 Subject: [PATCH 1/2] chore(deps): update rust crate shlex to v2 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 85be5dc1..985eb08f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ prost = "0.14.0" prost-types = "0.14.0" serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.142" -shlex = "1.3.0" +shlex = "2.0.0" tokio = { version = "1.40.0", default-features = false, features = [ "fs", "macros", From 41ef0de31f0eaf7516d1a968861503511d48bb0f Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Mon, 18 May 2026 11:37:07 +0200 Subject: [PATCH 2/2] fix(deps): manually update shlex to 2.0.1 --- Cargo.lock | 16 +++++++++++----- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6f9090fa..8d211fae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,7 +206,7 @@ dependencies = [ "quote", "regex", "rustc-hash", - "shlex", + "shlex 1.3.0", "syn", ] @@ -244,7 +244,7 @@ version = "1.2.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7" dependencies = [ - "shlex", + "shlex 1.3.0", ] [[package]] @@ -457,7 +457,7 @@ dependencies = [ "regex", "serde", "serde_json", - "shlex", + "shlex 2.0.1", "tempfile", "tokio", "tokio-native-tls", @@ -1427,7 +1427,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -1529,6 +1529,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 = "signal-hook-registry" version = "1.4.5" @@ -1602,7 +1608,7 @@ dependencies = [ "getrandom 0.4.1", "once_cell", "rustix", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 985eb08f..1032319c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ prost = "0.14.0" prost-types = "0.14.0" serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.142" -shlex = "2.0.0" +shlex = "2.0.1" tokio = { version = "1.40.0", default-features = false, features = [ "fs", "macros",