From 0e4e12ccaf745a34d7c7124613e0b344fe556b1b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 12:31:27 +0000 Subject: [PATCH] fix(deps): update rust crate uufuzz to 0.11.0 --- fuzz/Cargo.lock | 48 +++++++++--------------------------------------- fuzz/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 40 deletions(-) diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index da544cc..b1eb877 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -926,34 +926,10 @@ dependencies = [ "regex", "tar", "thiserror", - "uucore 0.10.0 (git+https://github.com/uutils/coreutils)", + "uucore 0.10.0", "zstd", ] -[[package]] -name = "uucore" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e97dd0fd8bb2ed12affba9f956c3b94b8ad3f9432746717475420e916ae0b8d4" -dependencies = [ - "bigdecimal", - "clap", - "fluent", - "fluent-syntax", - "glob", - "nix", - "num-traits", - "os_display", - "procfs", - "rustc-hash", - "rustix", - "thiserror", - "unic-langid", - "unicode-width", - "uucore_procs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wild", -] - [[package]] name = "uucore" version = "0.10.0" @@ -971,7 +947,7 @@ dependencies = [ "thiserror", "unic-langid", "unicode-width", - "uucore_procs 0.10.0 (git+https://github.com/uutils/coreutils)", + "uucore_procs 0.10.0", "wild", "winapi-util", "windows-sys", @@ -983,12 +959,16 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9962a5082023875505c7b74a6ef8b5b5d50081b7b09b998973f6da7b9514eed8" dependencies = [ + "bigdecimal", "clap", "fluent", "fluent-syntax", + "glob", "libc", "nix", + "num-traits", "os_display", + "procfs", "rustc-hash", "rustix", "thiserror", @@ -1013,16 +993,6 @@ dependencies = [ "uufuzz", ] -[[package]] -name = "uucore_procs" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "907f1b828046ea42cdb4bd898f05b48ab873a41937bf75ebe12f09a5bf411f58" -dependencies = [ - "proc-macro2", - "quote", -] - [[package]] name = "uucore_procs" version = "0.10.0" @@ -1044,16 +1014,16 @@ dependencies = [ [[package]] name = "uufuzz" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72d4c5bac0f8ccabaa8e8ccbf2724446f8b007c06ad343fabfe1a1525a4ff4f2" +checksum = "89cefc6af3f159159c3e5927d87da2bdc7430b92bf05ee4d180ffc09ec6b332b" dependencies = [ "console", "rand", "rustix", "similar", "tempfile", - "uucore 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "uucore 0.11.0", ] [[package]] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index fb66d12..664855f 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -15,7 +15,7 @@ tempfile = "3.15.0" rand = { version = "0.10.0" } similar = "3.0.0" uucore = { version = "0.11.0", features = ["libc"] } -uufuzz = "0.10.0" +uufuzz = "0.11.0" uu_tar = { path = "../src/uu/tar/" }