From 0aed4a35f1828753c0ec9efcf91b7816c94cce01 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 12:22:18 +0000 Subject: [PATCH] chore(deps): update rust crate rand_xorshift to 0.5.0 --- Cargo.lock | 16 +++++++++++----- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 93c35ebe..a7c2a733 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -538,7 +538,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha", - "rand_core", + "rand_core 0.9.5", ] [[package]] @@ -548,7 +548,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.9.5", ] [[package]] @@ -560,13 +560,19 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "rand_xorshift" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +checksum = "60aa6af80be32871323012e02e6e65f8a7cc7890931ae421d217ad8fe0df2ccf" dependencies = [ - "rand_core", + "rand_core 0.10.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 81a92aac..7d1ee3ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,7 +51,7 @@ itertools = "0.14.0" movingai = "2.1.0" noisy_float = "0.2.0" rand = "0.9.2" -rand_xorshift = "0.4.0" +rand_xorshift = "0.5.0" # Not a real dependency, but needed since criterion 0.5 pulls in regex # and older versions of regex do not compile with recent Rust. regex = "1.11.3"