From a81fd1521ff19af07c17601a0c68d982ea043054 Mon Sep 17 00:00:00 2001 From: John Eckersberg Date: Wed, 10 Jun 2026 14:58:05 -0400 Subject: [PATCH] Update shlex to 2.0.1 The 2.0.0 release had a bug which broke the docs build, which in turn causes `cargo doc` to fail for bootc as well. We explicitly use `--no-deps` in our validate job when building our docs so we don't catch things like this in other crates, but it's annoying when I want to generate all the docs locally. Signed-off-by: John Eckersberg --- Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb3dd8ae6..f9ed37495 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,7 +291,7 @@ dependencies = [ "rustix", "serde", "serde_json", - "shlex 2.0.0", + "shlex 2.0.1", "similar-asserts", "static_assertions", "tempfile", @@ -3148,9 +3148,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "shlex" -version = "2.0.0" +version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f70fe4c6ac787e57441913f82b210e668fb2033613bc7a76909cd8afce8bb1f" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" [[package]] name = "signal-hook"