From 19045d6a66434675529a7350bb9742239f135232 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 05:51:53 +0000 Subject: [PATCH] Update rand requirement from 0.9.0 to 0.10.1 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.1) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/crust-core/Cargo.toml | 2 +- crates/utils/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/crust-core/Cargo.toml b/crates/crust-core/Cargo.toml index 4a8711e..f1d1385 100644 --- a/crates/crust-core/Cargo.toml +++ b/crates/crust-core/Cargo.toml @@ -10,7 +10,7 @@ path = "src/lib.rs" [dependencies] utils = { path = "../utils" } -rand = "0.9.0" +rand = "0.10.1" image = { version = "0.25.6", default-features = false, features = ["png"] } rayon = "1.10.0" serde.workspace = true diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index d645a51..8a5483a 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -5,6 +5,6 @@ edition.workspace = true license-file.workspace = true [dependencies] -rand = "0.9.0" +rand = "0.10.1" serde.workspace = true glam.workspace = true