This commit is contained in:
dependabot[bot] 2026-06-29 15:50:26 +00:00 committed by GitHub
commit 182e8745ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -5483,9 +5483,9 @@ dependencies = [
[[package]]
name = "rmcp"
version = "1.7.0"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
checksum = "d52d21e5b342699bc4de690e6104fc4e43255e4e8420ff0f2cbb963aac09da6f"
dependencies = [
"async-trait",
"base64 0.22.1",
@ -5515,9 +5515,9 @@ dependencies = [
[[package]]
name = "rmcp-macros"
version = "1.7.0"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
checksum = "6c68cec74c5b3ac73ff46375ae49e161637bda80bba70f0d5db641583bb308ee"
dependencies = [
"darling 0.23.0",
"proc-macro2",

View file

@ -30,7 +30,7 @@ serde_json = "1"
image = { version = "0.25", default-features = false, features = ["png"] }
htmd = "0.5"
thiserror = "2"
rmcp = { version = "1", features = ["server", "transport-io", "transport-streamable-http-server", "macros"] }
rmcp = { version = "2", features = ["server", "transport-io", "transport-streamable-http-server", "macros"] }
schemars = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
axum = "0.8"
@ -84,7 +84,7 @@ missing_panics_doc = "allow"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
rmcp = { version = "1", features = ["client", "transport-io", "transport-child-process"] }
rmcp = { version = "2", features = ["client", "transport-io", "transport-child-process"] }
futures-util = "0.3"
[package.metadata.binstall]