From 34e6f1f00f24c7bb77db22b79e9dd2798ef8df5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 22:48:04 +0000 Subject: [PATCH] deps: update rand requirement from 0.8 to 0.9 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/0.8.5...0.9.0) --- updated-dependencies: - dependency-name: rand 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 2379028f..79d275ef 100644 --- a/sprs-rand/Cargo.toml +++ b/sprs-rand/Cargo.toml @@ -9,7 +9,7 @@ license.workspace = true edition.workspace = true [dependencies] -rand = "0.8.5" +rand = "0.9.0" rand_distr = "0.4.3" rand_pcg = "0.3.1" sprs = { version = "0.11.0", path = "../sprs" } diff --git a/sprs/Cargo.toml b/sprs/Cargo.toml index 452bc976..c48280ac 100644 --- a/sprs/Cargo.toml +++ b/sprs/Cargo.toml @@ -37,7 +37,7 @@ tempfile = "3.1.0" bincode = "1.2.0" tobj = "4.0" image = { version = "0.25.2", default-features = false, features = ["png"] } -rand = { version = "0.8", default-features = false, features = ["small_rng"] } +rand = { version = "0.9", default-features = false, features = ["small_rng"] } [[bench]] name = "suite"