From f9dc7d2048388e2f3aa8c17e00d4da6cf9f7fbcf Mon Sep 17 00:00:00 2001 From: SWangHash <88996709+SWangHash@users.noreply.github.com> Date: Mon, 27 Jul 2026 16:28:04 +0800 Subject: [PATCH] chore: upgrade reqwest to 0.13.4 and enable rmcp reqwest feature --- Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d357ddb594..9c994bd780 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -118,8 +118,7 @@ encoding_rs = "0.8.35" url = "2" # HTTP client -reqwest = { version = "0.12", default-features = false, features = ["native-tls", "rustls-tls-native-roots", "json", "stream", "multipart"] } -#reqwest = { version = "0.13.4", default-features = false, features = ["native-tls", "rustls", "http2", "json", "stream", "multipart", "query", "form"] } +reqwest = { version = "0.13.4", default-features = false, features = ["native-tls", "rustls", "http2", "json", "stream", "multipart", "query", "form"] } # Debug Log HTTP Server axum = { version = "0.8", features = ["json", "ws"] } @@ -255,7 +254,7 @@ rmcp = { version = "1.7", default-features = false, features = [ "client", "elicitation", "macros", - #"reqwest", + "reqwest", "schemars", "server", ] }