From a171bb96d32adc4ce8d5f6147ebccc6fc9996e7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Dec 2025 12:08:42 +0000 Subject: [PATCH] deps: update rand requirement from 0.8 to 0.9 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...rand_core-0.9.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.2 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 40afc5e..ec82e76 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.9" [dependencies.home] version = "=0.5.12"