Unverified Commit 5265787b authored by Graham King's avatar Graham King Committed by GitHub
Browse files

chore: Enable "multipart" feature of reqwest (#7084)


Signed-off-by: default avatarGraham King <grahamk@nvidia.com>
parent b6852919
...@@ -97,6 +97,7 @@ parking_lot = "0.12.5" ...@@ -97,6 +97,7 @@ parking_lot = "0.12.5"
prometheus = { version = "0.14"} prometheus = { version = "0.14"}
rand = { version = "0.9.2" } rand = { version = "0.9.2" }
reqwest = { version = "0.12.24", default-features = false, features = [ reqwest = { version = "0.12.24", default-features = false, features = [
"multipart",
"json", "json",
"stream", "stream",
"rustls-tls", "rustls-tls",
......
...@@ -2001,6 +2001,16 @@ version = "0.3.17" ...@@ -2001,6 +2001,16 @@ version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mime_guess"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
dependencies = [
"mime",
"unicase",
]
[[package]] [[package]]
name = "mio" name = "mio"
version = "0.6.23" version = "0.6.23"
...@@ -2897,6 +2907,7 @@ dependencies = [ ...@@ -2897,6 +2907,7 @@ dependencies = [
"hyper-util", "hyper-util",
"js-sys", "js-sys",
"log", "log",
"mime_guess",
"percent-encoding", "percent-encoding",
"pin-project-lite", "pin-project-lite",
"quinn", "quinn",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment