From 2ab4562b1be1459f885bdcc06bcbcdfd93d5657a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:21:32 +0000 Subject: [PATCH] chore(deps): update rand requirement from 0.9 to 0.10 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] --- Cargo.toml | 2 +- template-mcp-server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 031d055..5c403ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = "1.0" async-trait = "0.1" -rand = "0.9" +rand = "0.10" # PulseEngine MCP Framework - Published v0.11.0 pulseengine-mcp-server = { version = "0.11.0", features = ["stdio-logging"] } diff --git a/template-mcp-server/Cargo.toml b/template-mcp-server/Cargo.toml index 19c6032..0c2d766 100644 --- a/template-mcp-server/Cargo.toml +++ b/template-mcp-server/Cargo.toml @@ -28,5 +28,5 @@ pulseengine-mcp-server = { workspace = true } pulseengine-mcp-macros = { workspace = true } pulseengine-mcp-protocol = { workspace = true } pulseengine-mcp-transport = { workspace = true } -rand = "0.9" +rand = "0.10" schemars = "1.0"