From bfd3b0df1172b35258824e3587bfe8b16ba13373 Mon Sep 17 00:00:00 2001 From: Jordan Santell Date: Wed, 18 Oct 2023 17:09:16 -0700 Subject: [PATCH] chore: Pin reqwest to 0.11.20 to avoid issues with #686. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 14ada6e01..cbc826242 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.5" } serde = { version = "^1" } serde_json = { version = "^1" }