From eb75ba4624c207dd334312ee70a9a01f3428a287 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 21:42:27 +0000 Subject: [PATCH] deps: update rand requirement from 0.9 to 0.10 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/rand_core-0.9.1...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- sprs-rand/Cargo.toml | 2 +- sprs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sprs-rand/Cargo.toml b/sprs-rand/Cargo.toml index 34b7299f..1d93c109 100644 --- a/sprs-rand/Cargo.toml +++ b/sprs-rand/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true edition.workspace = true [dependencies] -rand = "0.9.0" +rand = "0.10.0" rand_distr = "0.5.0" rand_pcg = "0.9.0" sprs = { version = "0.11.0", path = "../sprs" } diff --git a/sprs/Cargo.toml b/sprs/Cargo.toml index ed15b400..d77bc540 100644 --- a/sprs/Cargo.toml +++ b/sprs/Cargo.toml @@ -37,7 +37,7 @@ tempfile = "3.1.0" bincode = { version = "2.0.1", features = ["serde"] } tobj = "4.0" image = { version = "0.25.2", default-features = false, features = ["png"] } -rand = { version = "0.9", default-features = false, features = ["small_rng"] } +rand = { version = "0.10", default-features = false, features = ["small_rng"] } [[bench]] name = "suite"