From f6b1a7439e6e5a50b6d306204218775dc46b7c7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Jul 2026 18:56:29 +0000 Subject: [PATCH] chore(deps): update rand requirement in /examples/observability-demo 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/0.9.4/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.0...0.9.4) --- updated-dependencies: - dependency-name: rand dependency-version: 0.9.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 8950e64..0b4c3fd 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -421,7 +421,7 @@ wasi = { version = "0.14", optional = true } [dev-dependencies] blake3 = "1.5" ed25519-dalek = { version = "2", features = ["rand_core"] } -rand = "0.8" +rand = "0.10" uniffi = { version = "0.31", features = ["bindgen-tests"] } criterion = { version = "0.8", features = ["html_reports", "async_tokio"] } tokio-test = "0.4"