From fa6c74896a8a5023e1fd920a84281e2604fbe20a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 21:04:56 +0000 Subject: [PATCH 1/2] chore: Update rand requirement from 0.9.0 to 0.10.0 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] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 65ef68a6b..c2c9b562c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ tracing-subscriber = { version = "0.3.19", features = [ faer = "0.23.1" faer-ext = { version = "0.7.1", features = ["nalgebra", "ndarray"] } pharmsol = "=0.22.1" -rand = "0.9.0" +rand = "0.10.0" anyhow = "1.0.100" rayon = "1.10.0" From c0bf0b454d7e33ecc2427d5eefeb3cd7e445a722 Mon Sep 17 00:00:00 2001 From: Markus Date: Thu, 9 Apr 2026 14:50:51 +0200 Subject: [PATCH 2/2] chore: Remove unused dependency --- src/routines/initialization/latin.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routines/initialization/latin.rs b/src/routines/initialization/latin.rs index bf6f83418..57707ef7b 100644 --- a/src/routines/initialization/latin.rs +++ b/src/routines/initialization/latin.rs @@ -2,7 +2,6 @@ use anyhow::Result; use faer::Mat; use rand::prelude::*; use rand::rngs::StdRng; -use rand::Rng; use crate::prelude::Parameters; use crate::structs::theta::Theta;