From e3ab34af6beb4e550f8f489e44346a0fb760e853 Mon Sep 17 00:00:00 2001 From: Jordan Santell Date: Mon, 13 Nov 2023 13:16:37 -0800 Subject: [PATCH] chore: Pin reqwest to 0.11.20 to avoid issues with #686. (#688) Co-authored-by: Christopher Joel <240083+cdata@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b76680a6d..0bcc129c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ libipld-json = { version = "0.16" } multihash = { version = "0.18" } pathdiff = { version = "0.2.1" } rand = { version = "0.8" } -reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "stream"] } +reqwest = { version = "=0.11.20", default-features = false, features = ["json", "rustls-tls", "stream"] } sentry-tracing = { version = "0.31.7" } serde = { version = "^1" } serde_json = { version = "^1" }