From 3631d53896138d6cf5d836c4383aa8d5e556966c Mon Sep 17 00:00:00 2001 From: Mehul <65443164+infiniteregrets@users.noreply.github.com> Date: Mon, 20 Jun 2022 15:52:13 -0400 Subject: [PATCH] Enable blocking feature for reqwest (#161) --- CHANGELOG.md | 1 + mirrord-cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1885ddae37..e95f9fc558b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how - CI: Add sleep after local app finishes loading for agent to load filter make tests less flaky. - Handle relative paths for open, openat - Fix once cell renamings, PR [#98165](https://github.com/rust-lang/rust/pull/98165) +- Enable the blocking feature of the `reqwest` library ## 2.2.1 ### Changed diff --git a/mirrord-cli/Cargo.toml b/mirrord-cli/Cargo.toml index 33ef95881a6..799b782d83f 100644 --- a/mirrord-cli/Cargo.toml +++ b/mirrord-cli/Cargo.toml @@ -23,7 +23,7 @@ tracing.workspace = true tracing-subscriber.workspace = true exec = "0.3" anyhow.workspace = true -reqwest = "0.11.10" +reqwest = { version = "0.11.10", features = ["blocking"] } semver = "1.0.9" [build-dependencies]