From 355f3924f0d939b62990f647e3987098149417ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Sep 2026 22:16:22 +0000 Subject: [PATCH] ci: bump the cargo group across 1 directory with 2 updates Bumps the cargo group with 2 updates in the / directory: [rmcp](https://github.com/modelcontextprotocol/rust-sdk) and [quinn-proto](https://github.com/quinn-rs/quinn). Updates `rmcp` from 1.4.0 to 2.0.0 - [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml) - [Commits](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v1.4.0...rmcp-v2.0.0) Updates `quinn-proto` from 0.11.14 to 0.11.18 - [Release notes](https://github.com/quinn-rs/quinn/releases) - [Commits](https://github.com/quinn-rs/quinn/compare/quinn-proto-0.11.14...quinn-proto-0.11.18) --- updated-dependencies: - dependency-name: rmcp dependency-version: 2.0.0 dependency-type: direct:production dependency-group: cargo - dependency-name: quinn-proto dependency-version: 0.11.18 dependency-type: indirect dependency-group: cargo ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ac3914..29e62ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -854,11 +854,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", - "js-sys", "libc", "r-efi 5.3.0", "wasip2", - "wasm-bindgen", ] [[package]] @@ -868,11 +866,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" dependencies = [ "cfg-if", + "js-sys", "libc", "r-efi 6.0.0", "rand_core 0.10.1", "wasip2", "wasip3", + "wasm-bindgen", ] [[package]] @@ -1642,15 +1642,16 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.14" +version = "0.11.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" +checksum = "a9746dbde176634f4f2f1faf2404e30a31b2bc1e9cafb5329c95d8177a18c9fc" dependencies = [ "aws-lc-rs", "bytes", - "getrandom 0.3.4", + "getrandom 0.4.2", "lru-slab", - "rand 0.9.4", + "rand 0.10.1", + "rand_pcg", "ring", "rustc-hash", "rustls", @@ -1743,6 +1744,15 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" +[[package]] +name = "rand_pcg" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" +dependencies = [ + "rand_core 0.10.1", +] + [[package]] name = "redox_syscall" version = "0.5.18" @@ -1886,9 +1896,9 @@ dependencies = [ [[package]] name = "rmcp" -version = "1.4.0" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f542f74cf247da16f19bbc87e298cd201e912314f4083e88cdd671f44f5fcb53" +checksum = "d52d21e5b342699bc4de690e6104fc4e43255e4e8420ff0f2cbb963aac09da6f" dependencies = [ "async-trait", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 3640dc0..e2331be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ keyring = { version = "3", features = ["apple-native", "linux-native-sync-persis inquire = "0.7" reedline = "0.38" nu-ansi-term = "0.50" -rmcp = { version = "1.4", default-features = false, features = ["server", "transport-io", "transport-streamable-http-server"] } +rmcp = { version = "2.0", default-features = false, features = ["server", "transport-io", "transport-streamable-http-server"] } axum = "0.8" tower = { version = "0.5", features = ["util"] } pin-project-lite = "0.2"