From d91c9d9a1effd0e82b9814d77cd200306449f553 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 13:31:37 +0000 Subject: [PATCH] fix(deps): update rust crate uucore to 0.11.0 --- Cargo.lock | 36 +++--------------------------------- Cargo.toml | 2 +- fuzz/uufuzz/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e6d2aa2..02339a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1237,31 +1237,11 @@ dependencies = [ "memchr", "onig", "onig_sys", - "uucore 0.10.0", + "uucore", "uutests", "walkdir", ] -[[package]] -name = "uucore" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e97dd0fd8bb2ed12affba9f956c3b94b8ad3f9432746717475420e916ae0b8d4" -dependencies = [ - "clap", - "fluent", - "fluent-syntax", - "nix", - "os_display", - "rustc-hash", - "rustix", - "thiserror", - "unic-langid", - "unicode-width", - "uucore_procs 0.10.0", - "wild", -] - [[package]] name = "uucore" version = "0.11.0" @@ -1282,21 +1262,11 @@ dependencies = [ "time", "unic-langid", "unicode-width", - "uucore_procs 0.11.0", + "uucore_procs", "wild", "windows-sys", ] -[[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.11.0" @@ -1321,7 +1291,7 @@ dependencies = [ "regex", "rlimit", "tempfile", - "uucore 0.11.0", + "uucore", "xattr", ] diff --git a/Cargo.toml b/Cargo.toml index 6a1ae6f..019177b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ glob = "0.3.1" memchr = "2.7.2" onig = { version = "~6.5.1", default-features = false } onig_sys = { version = "69.9.3", default-features = false } -uucore = "0.10.0" +uucore = "0.11.0" walkdir = "2.5" [[bench]] diff --git a/fuzz/uufuzz/Cargo.toml b/fuzz/uufuzz/Cargo.toml index 8e78301..b1e6cdb 100644 --- a/fuzz/uufuzz/Cargo.toml +++ b/fuzz/uufuzz/Cargo.toml @@ -11,6 +11,6 @@ license = "MIT" console = "0.16.0" rand = { version = "0.10.1", features = ["std_rng"] } similar = "3.0.0" -uucore = { version = "0.10.0", features = ["parser"] } +uucore = { version = "0.11.0", features = ["parser"] } tempfile = "3.15.0" rustix = { version = "1.1.4", features = ["stdio", "pipe"] }