From 58de55e1b4f41bb160513f1d568213dcf6770a8f Mon Sep 17 00:00:00 2001 From: "oxide-renovate[bot]" <146848827+oxide-renovate[bot]@users.noreply.github.com> Date: Fri, 28 Feb 2025 07:11:46 +0000 Subject: [PATCH] Update Rust crate rand_seeder to 0.4.0 --- Cargo.lock | 7 ++++--- Cargo.toml | 2 +- workspace-hack/Cargo.toml | 2 ++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ecae37abe78..e4c9a286342 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7615,6 +7615,7 @@ dependencies = [ "qorb", "quote", "rand 0.8.5", + "rand_core 0.9.2", "regex", "regex-automata", "regex-syntax 0.8.5", @@ -9612,11 +9613,11 @@ dependencies = [ [[package]] name = "rand_seeder" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9febe641d2842ffc76ee962668a17578767c4e01735e4802b21ed9a24b2e4e" +checksum = "502927fdfc3c9645d53e0c95bb2d53783b5a15bfeaeeb96f7703c21fbb76841e" dependencies = [ - "rand_core 0.6.4", + "rand_core 0.9.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 124fe40fc26..11b39976dc1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -580,7 +580,7 @@ quote = "1.0" rand = "0.8.5" rand_core = "0.6.4" rand_distr = "0.4.3" -rand_seeder = "0.3.0" +rand_seeder = "0.4.0" range-requests = { path = "range-requests" } ratatui = "0.29.0" rayon = "1.10" diff --git a/workspace-hack/Cargo.toml b/workspace-hack/Cargo.toml index e52dc2cc675..81c15b09fcd 100644 --- a/workspace-hack/Cargo.toml +++ b/workspace-hack/Cargo.toml @@ -98,6 +98,7 @@ proc-macro2 = { version = "1.0.93" } qorb = { version = "0.2.1", features = ["qtop"] } quote = { version = "1.0.38" } rand = { version = "0.8.5", features = ["small_rng"] } +rand_core = { version = "0.9.2", default-features = false, features = ["os_rng", "std"] } regex = { version = "1.11.1" } regex-automata = { version = "0.4.8", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.5" } @@ -219,6 +220,7 @@ proc-macro2 = { version = "1.0.93" } qorb = { version = "0.2.1", features = ["qtop"] } quote = { version = "1.0.38" } rand = { version = "0.8.5", features = ["small_rng"] } +rand_core = { version = "0.9.2", default-features = false, features = ["os_rng", "std"] } regex = { version = "1.11.1" } regex-automata = { version = "0.4.8", default-features = false, features = ["dfa", "hybrid", "meta", "nfa", "perf", "unicode"] } regex-syntax = { version = "0.8.5" }