From 70ca5134e1ac19f68ab2b7b8c5e17d93f3657c84 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 12:32:30 +0000 Subject: [PATCH] fix(deps): update rust crate rand to 0.10.0 --- fuzz/Cargo.toml | 2 +- fuzz/uufuzz/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 81edb902c71..1ae22c38bb3 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -27,7 +27,7 @@ debug = true [dependencies] libfuzzer-sys = "0.4.7" -rand = { version = "0.9.0", features = ["small_rng"] } +rand = { version = "0.10.0", features = ["small_rng"] } uufuzz = { path = "uufuzz" } uucore = { path = "../src/uucore", features = ["parser"] } uu_date = { path = "../src/uu/date" } diff --git a/fuzz/uufuzz/Cargo.toml b/fuzz/uufuzz/Cargo.toml index 2ca4ff9f3dd..5e96c4dd02a 100644 --- a/fuzz/uufuzz/Cargo.toml +++ b/fuzz/uufuzz/Cargo.toml @@ -11,7 +11,7 @@ license.workspace = true [dependencies] console = "0.16.0" libc = "0.2.153" -rand = { version = "0.9.0", features = ["small_rng"] } +rand = { version = "0.10.0", features = ["small_rng"] } similar = "3.0.0" uucore = { version = "0.8.0", path = "../../src/uucore", features = ["parser"] } tempfile = "3.15.0"