From c3722b867263d2b266b4f12f713ef714cf0455c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:02:34 +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.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/rmcp/Cargo.toml | 2 +- examples/clients/Cargo.toml | 2 +- examples/servers/Cargo.toml | 2 +- examples/transport/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/rmcp/Cargo.toml b/crates/rmcp/Cargo.toml index 2b08f292..f109a9f0 100644 --- a/crates/rmcp/Cargo.toml +++ b/crates/rmcp/Cargo.toml @@ -54,7 +54,7 @@ process-wrap = { version = "9.0", features = ["tokio1"], optional = true } # tokio-tungstenite ={ version = "0.26", optional = true } # for http-server transport -rand = { version = "0.9", optional = true } +rand = { version = "0.10", optional = true } tokio-stream = { version = "0.1", optional = true } uuid = { version = "1", features = ["v4"], optional = true } http-body = { version = "1", optional = true } diff --git a/examples/clients/Cargo.toml b/examples/clients/Cargo.toml index e086e811..078a9d58 100644 --- a/examples/clients/Cargo.toml +++ b/examples/clients/Cargo.toml @@ -20,7 +20,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -rand = "0.9" +rand = "0.10" futures = "0.3" anyhow = "1.0" url = "2.4" diff --git a/examples/servers/Cargo.toml b/examples/servers/Cargo.toml index 4a4b0655..1db8ceee 100644 --- a/examples/servers/Cargo.toml +++ b/examples/servers/Cargo.toml @@ -32,7 +32,7 @@ tracing-subscriber = { version = "0.3", features = [ "fmt", ] } futures = "0.3" -rand = { version = "0.9", features = ["std"] } +rand = { version = "0.10", features = ["std"] } axum = { version = "0.8", features = ["macros"] } schemars = "1.0" reqwest = { version = "0.12", features = ["json"] } diff --git a/examples/transport/Cargo.toml b/examples/transport/Cargo.toml index 7017bdca..9396b4d3 100644 --- a/examples/transport/Cargo.toml +++ b/examples/transport/Cargo.toml @@ -36,7 +36,7 @@ tracing-subscriber = { version = "0.3", features = [ "fmt", ] } futures = "0.3" -rand = { version = "0.9" } +rand = { version = "0.10" } schemars = { version = "1.0", optional = true } hyper = { version = "1", features = ["client", "server", "http1"] } hyper-util = { version = "0.1", features = ["tokio"] }