From 5b121dd30be06daa8c0b7f5314c3fef288490ff9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:43:22 +0000 Subject: [PATCH] Update rand requirement from 0.8 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/0.8.0...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 +- compatibility/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b6a5e0..f923343 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ serde_derive = "1.0" serde_json = { version = "1.0", default-features = false } tempfile = "3.2" criterion = "0.6" -rand = "0.8" +rand = "0.10" uuid = { version = "1.1", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] } glam = { version = "0.25", features = ["serde"] } diff --git a/compatibility/Cargo.toml b/compatibility/Cargo.toml index 2c4a60e..80e23aa 100644 --- a/compatibility/Cargo.toml +++ b/compatibility/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" bincode_2 = { path = "..", package = "bincode", features = ["serde"] } bincode_1 = { version = "1", package = "bincode" } serde = { version = "1", features = ["derive"] } -rand = "0.8" +rand = "0.10"