From b167d7a31889cf1e8db1e2b752c0d2f8ea60d4f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Apr 2026 05:04:41 +0000 Subject: [PATCH] chore(deps): 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/server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 7bbc3c3..73d2fbd 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -59,7 +59,7 @@ jsonwebtoken = "9.3.1" libsqlite3-sys = { version = "0.35", features = ["bundled"] } # this is needed for proper linking log = "0.4.25" once_cell = "1.20.3" -rand = "0.9.0" +rand = "0.10.1" rcgen = "0.13.2" regex = "1.11.1" rocket = { version = "0.5.1", features = ["tls"] }