From a8bafcfd3b3ae5de19da835358c5528ab7796ae7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:25:14 +0000 Subject: [PATCH] chore(deps): bump rand from 0.9.2 to 0.10.0 in /bots/echidnabot Bumps [rand](https://github.com/rust-random/rand) from 0.9.2 to 0.10.0. - [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.2...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- bots/echidnabot/Cargo.lock | 10 +++++----- bots/echidnabot/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bots/echidnabot/Cargo.lock b/bots/echidnabot/Cargo.lock index 7a91ae32..2a4d10c4 100644 --- a/bots/echidnabot/Cargo.lock +++ b/bots/echidnabot/Cargo.lock @@ -1136,7 +1136,7 @@ dependencies = [ "hmac 0.13.0", "mockall", "octocrab", - "rand 0.9.2", + "rand 0.10.0", "reqwest", "serde", "serde_json", @@ -2919,7 +2919,7 @@ dependencies = [ "bytes", "getrandom 0.3.4", "lru-slab", - "rand 0.9.2", + "rand 0.9.3", "ring", "rustc-hash", "rustls", @@ -2979,9 +2979,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +checksum = "7ec095654a25171c2124e9e3393a930bddbffdc939556c914957a4c3e0a87166" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.5", @@ -4325,7 +4325,7 @@ dependencies = [ "http", "httparse", "log", - "rand 0.9.2", + "rand 0.9.3", "sha1", "thiserror", "utf-8", diff --git a/bots/echidnabot/Cargo.toml b/bots/echidnabot/Cargo.toml index 854f7d6e..600dc63d 100644 --- a/bots/echidnabot/Cargo.toml +++ b/bots/echidnabot/Cargo.toml @@ -56,7 +56,7 @@ thiserror = "2" anyhow = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } -rand = "0.9" +rand = "0.10" # Crypto for webhook verification hmac = "0.13"