From 014bf6b4a7ea69c8c147079b752468a372d94a8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 21:34:51 +0000 Subject: [PATCH] chore(deps): bump rand from 0.8.7 to 0.9.5 in /contracts Bumps [rand](https://github.com/rust-random/rand) from 0.8.7 to 0.9.5. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/0.9.5/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.7...0.9.5) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- contracts/Cargo.lock | 2 +- contracts/escrow/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Cargo.lock b/contracts/Cargo.lock index 26ab92c..ea510d5 100644 --- a/contracts/Cargo.lock +++ b/contracts/Cargo.lock @@ -671,7 +671,7 @@ dependencies = [ "ed25519-dalek", "htlc-core", "proptest", - "rand 0.8.7", + "rand 0.9.5", "soroban-sdk", ] diff --git a/contracts/escrow/Cargo.toml b/contracts/escrow/Cargo.toml index f410088..22870e5 100644 --- a/contracts/escrow/Cargo.toml +++ b/contracts/escrow/Cargo.toml @@ -15,4 +15,4 @@ htlc-core = { path = "../htlc-core" } proptest = { version = "1", default-features = false, features = ["std"] } soroban-sdk = { workspace = true, features = ["testutils"] } ed25519-dalek = { version = "2.1", features = ["rand_core"] } -rand = "0.8" +rand = "0.9"