From f99dd32d13c6a8fc087b59ca32590006d8ab46e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Jan 2026 18:24:18 +0000 Subject: [PATCH 1/2] chore(deps): update reqwest requirement from 0.12 to 0.13 Updates the requirements on [reqwest](https://github.com/seanmonstar/reqwest) to permit the latest version. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.0...v0.13.1) --- updated-dependencies: - dependency-name: reqwest dependency-version: 0.13.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/rmcp/Cargo.toml | 2 +- examples/clients/Cargo.toml | 2 +- examples/servers/Cargo.toml | 2 +- examples/simple-chat-client/Cargo.toml | 2 +- examples/transport/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/rmcp/Cargo.toml b/crates/rmcp/Cargo.toml index b86f2abe..9e2b98f6 100644 --- a/crates/rmcp/Cargo.toml +++ b/crates/rmcp/Cargo.toml @@ -34,7 +34,7 @@ schemars = { version = "1.0", optional = true, features = ["chrono04"] } base64 = { version = "0.22", optional = true } # for HTTP client -reqwest = { version = "0.12", default-features = false, features = [ +reqwest = { version = "0.13", default-features = false, features = [ "json", "stream", ], optional = true } diff --git a/examples/clients/Cargo.toml b/examples/clients/Cargo.toml index e086e811..997124f3 100644 --- a/examples/clients/Cargo.toml +++ b/examples/clients/Cargo.toml @@ -26,7 +26,7 @@ anyhow = "1.0" url = "2.4" tower = "0.5" axum = "0.8" -reqwest = "0.12" +reqwest = "0.13" clap = { version = "4.0", features = ["derive"] } [[example]] diff --git a/examples/servers/Cargo.toml b/examples/servers/Cargo.toml index 4a4b0655..315ce470 100644 --- a/examples/servers/Cargo.toml +++ b/examples/servers/Cargo.toml @@ -35,7 +35,7 @@ futures = "0.3" rand = { version = "0.9", features = ["std"] } axum = { version = "0.8", features = ["macros"] } schemars = "1.0" -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } chrono = "0.4" uuid = { version = "1.6", features = ["v4", "serde"] } serde_urlencoded = "0.7" diff --git a/examples/simple-chat-client/Cargo.toml b/examples/simple-chat-client/Cargo.toml index db8cdda4..2cfaf5a1 100644 --- a/examples/simple-chat-client/Cargo.toml +++ b/examples/simple-chat-client/Cargo.toml @@ -8,7 +8,7 @@ publish = false tokio = { version = "1", features = ["full"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.12", features = ["json"] } +reqwest = { version = "0.13", features = ["json"] } anyhow = "1.0" thiserror = "2.0" async-trait = "0.1" diff --git a/examples/transport/Cargo.toml b/examples/transport/Cargo.toml index 7017bdca..c94656c3 100644 --- a/examples/transport/Cargo.toml +++ b/examples/transport/Cargo.toml @@ -41,7 +41,7 @@ schemars = { version = "1.0", optional = true } hyper = { version = "1", features = ["client", "server", "http1"] } hyper-util = { version = "0.1", features = ["tokio"] } tokio-tungstenite = "0.28.0" -reqwest = { version = "0.12" } +reqwest = { version = "0.13" } pin-project-lite = "0.2" [[example]] From b0562c1ec51250cdbb8238ab8ef974b2f8be495a Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Tue, 13 Jan 2026 16:35:08 -0500 Subject: [PATCH 2/2] chore: manual adjustments required --- crates/rmcp/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/rmcp/Cargo.toml b/crates/rmcp/Cargo.toml index 9e2b98f6..7e47b6d8 100644 --- a/crates/rmcp/Cargo.toml +++ b/crates/rmcp/Cargo.toml @@ -84,9 +84,9 @@ elicitation = [] # reqwest http client __reqwest = ["dep:reqwest"] -reqwest = ["__reqwest", "reqwest?/rustls-tls"] +reqwest = ["__reqwest", "reqwest?/rustls"] -reqwest-tls-no-provider = ["__reqwest", "reqwest?/rustls-tls-no-provider"] +reqwest-tls-no-provider = ["__reqwest", "reqwest?/__rustls"] server-side-http = [ "uuid", @@ -207,4 +207,4 @@ path = "tests/test_task.rs" [[test]] name = "test_streamable_http_priming" required-features = ["server", "client", "transport-streamable-http-server", "reqwest"] -path = "tests/test_streamable_http_priming.rs" \ No newline at end of file +path = "tests/test_streamable_http_priming.rs"