From 43ed4ac243acf4efe11eed979246af776db88e99 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 06:13:27 +0000 Subject: [PATCH] fix(deps): update rust crate uufuzz to 0.10.0 --- fuzz/Cargo.lock | 47 +++++++++-------------------------------------- fuzz/Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 39 deletions(-) diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index b79c89e..4be335d 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -1040,33 +1040,10 @@ dependencies = [ "regex", "tar", "thiserror", - "uucore 0.9.0 (git+https://github.com/uutils/coreutils)", + "uucore 0.9.0", "zstd", ] -[[package]] -name = "uucore" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "069b34217c27f611e1589f540f58118dbf226a9e407d38ab472052ff075a1dc2" -dependencies = [ - "bigdecimal", - "clap", - "fluent", - "fluent-syntax", - "glob", - "nix", - "num-traits", - "os_display", - "procfs", - "rustc-hash", - "rustix", - "thiserror", - "unic-langid", - "uucore_procs 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "wild", -] - [[package]] name = "uucore" version = "0.9.0" @@ -1083,7 +1060,7 @@ dependencies = [ "rustix", "thiserror", "unic-langid", - "uucore_procs 0.9.0 (git+https://github.com/uutils/coreutils)", + "uucore_procs 0.9.0", "wild", "winapi-util", "windows-sys", @@ -1095,12 +1072,16 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e97dd0fd8bb2ed12affba9f956c3b94b8ad3f9432746717475420e916ae0b8d4" dependencies = [ + "bigdecimal", "clap", "fluent", "fluent-syntax", + "glob", "libc", "nix", + "num-traits", "os_display", + "procfs", "rustc-hash", "rustix", "thiserror", @@ -1125,16 +1106,6 @@ dependencies = [ "uufuzz", ] -[[package]] -name = "uucore_procs" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34337da211e7abfff7189b794afb3b5018fe356fb36474b73645458fc1201350" -dependencies = [ - "proc-macro2", - "quote", -] - [[package]] name = "uucore_procs" version = "0.9.0" @@ -1156,16 +1127,16 @@ dependencies = [ [[package]] name = "uufuzz" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e4192b67d5e7f0a3300db353ec3217beee89442f02c11d8ae108867eee392d0" +checksum = "72d4c5bac0f8ccabaa8e8ccbf2724446f8b007c06ad343fabfe1a1525a4ff4f2" dependencies = [ "console", "rand", "rustix", "similar", "tempfile", - "uucore 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "uucore 0.10.0", ] [[package]] diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index fab7a9f..788faa5 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.10.0", features = ["libc"] } -uufuzz = "0.9.0" +uufuzz = "0.10.0" uu_tar = { path = "../src/uu/tar/" }