From 6c84a87f94d519d96d19ada4b1a393dab90c5cc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 12:10:33 +0000 Subject: [PATCH] deps: update rand requirement from 0.8 to 0.10 in /backend 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] --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 152af21..7c35762 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -45,7 +45,7 @@ hmac = "0.12" subtle = "2.5" reqwest = { version = "0.12", features = ["json"] } html-escape = "0.2" -rand = "0.8" +rand = "0.10" [dependencies.home] version = "=0.5.12"