From 002a1138e9dad9bbde79bbe26d4a6e4c5d8c20c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 19:33:17 +0000 Subject: [PATCH] deps(rust): bump rmcp from 1.7.0 to 2.2.0 Bumps [rmcp](https://github.com/modelcontextprotocol/rust-sdk) from 1.7.0 to 2.2.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.7.0...rmcp-v2.2.0) --- updated-dependencies: - dependency-name: rmcp dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/aingle_cortex/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 477f40b..493aaa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6545,9 +6545,9 @@ dependencies = [ [[package]] name = "rmcp" -version = "1.7.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e" +checksum = "14db48ee17a9ba61810ab1a9c1beb7d06d8136ae39ac25a1137f10d357af01af" dependencies = [ "async-trait", "base64 0.22.1", @@ -6576,9 +6576,9 @@ dependencies = [ [[package]] name = "rmcp-macros" -version = "1.7.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d" +checksum = "783d787bf21813b285f13019adc49e11af501c658890c1e519f31f937c68b7e3" dependencies = [ "darling 0.23.0", "proc-macro2", diff --git a/crates/aingle_cortex/Cargo.toml b/crates/aingle_cortex/Cargo.toml index 1f5dd94..c976b8f 100644 --- a/crates/aingle_cortex/Cargo.toml +++ b/crates/aingle_cortex/Cargo.toml @@ -56,7 +56,7 @@ async-graphql-axum = { version = "8.0.0-rc", optional = true } spargebra = { version = "0.4", optional = true } # MCP server (optional) — Model Context Protocol over stdio -rmcp = { version = "1.7", features = ["server", "transport-io", "macros"], optional = true } +rmcp = { version = "2.2", features = ["server", "transport-io", "macros"], optional = true } schemars = { version = "1.0", optional = true } # Authentication (optional) @@ -125,7 +125,7 @@ reqwest = { version = "0.12", features = ["json"] } tokio-test = "0.4" # Enable the rmcp `client` feature for the in-process MCP integration test. # This is dev-only; the production `mcp` feature uses the server side only. -rmcp = { version = "1.7", features = ["client", "transport-io"] } +rmcp = { version = "2.2", features = ["client", "transport-io"] } # OAuth integration test: derive a JWK from the test public key + base64url encode. rsa = { version = "0.9", features = ["pem"] } base64 = "0.22"