diff --git a/Cargo.lock b/Cargo.lock index 9bc1b3b..067b3c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -843,9 +843,9 @@ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "rmcp" -version = "1.7.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e" +checksum = "f00a32c3b81b7b254076a65abd5ab2551209146713ba38f73818657e865e9433" dependencies = [ "async-trait", "base64", @@ -866,9 +866,9 @@ dependencies = [ [[package]] name = "rmcp-macros" -version = "1.7.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d" +checksum = "2ee70afb7956da9f30d5348a2539b5eb90d9038f834463657ab717076ac3b1ad" dependencies = [ "darling", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 4159c8f..66236cc 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.1.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.1.0", features = ["client"] } tokio = { version = "1", features = ["io-util"] }