diff --git a/Cargo.lock b/Cargo.lock index 9bc1b3b..2fd3f6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,9 +843,9 @@ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[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", @@ -866,9 +866,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", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 4159c8f..4683927 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories = ["database", "command-line-utilities"] [dependencies] falkordb = { version = "0.8.6", features = ["tokio"] } # rmcp moves fast; pin to an exact version and bump deliberately (see copilot-instructions.md). -rmcp = { version = "=1.7.0", features = ["server", "macros", "schemars", "transport-io"] } +rmcp = { version = "=2.2.0", features = ["server", "macros", "schemars", "transport-io"] } tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std", "signal"] } serde = { version = "1", features = ["derive"] } serde_json = "1" @@ -24,5 +24,5 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] -rmcp = { version = "=1.7.0", features = ["client"] } +rmcp = { version = "=2.2.0", features = ["client"] } tokio = { version = "1", features = ["io-util"] }