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"