From a95844818fa8c5889fd5b5624cfd34a18957c941 Mon Sep 17 00:00:00 2001 From: jbesraa Date: Sun, 27 Aug 2023 20:45:33 +0300 Subject: [PATCH] Pin `minreq` to 2.8.0 bitcoind crate is using minreq 2.9.0 which requires 1.60 MSRV and we want to support 1.57 MSRV --- .github/workflows/rust.yml | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 58860f77..ad93e197 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,6 +31,7 @@ jobs: cargo update -p log --precise 0.4.18 cargo update -p tempfile --precise 3.6.0 cargo update -p flate2 --precise 1.0.26 + cargo update -p minreq --precise 2.8.0 - name: test run: cargo test --verbose --all-features --lib diff --git a/README.md b/README.md index 427ffc7c..1f57a35e 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ To build and test with the MSRV you will need to pin the below dependency versio cargo update -p log --precise 0.4.18 cargo update -p tempfile --precise 3.6.0 cargo update -p flate2 --precise 1.0.26 +cargo update -p minreq --precise 2.8.0 ``` ## License