From 546708a98eaa38ce0ab16af517f710cfbee8618e Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Fri, 14 Jun 2024 22:45:38 -0500 Subject: [PATCH] ci: pin url dependency version to build with rust 1.63 --- .github/workflows/cont_integration.yml | 1 + README.md | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index b826197..b3b6b28 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -58,6 +58,7 @@ jobs: cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5" cargo update -p time --precise "0.3.20" cargo update -p home --precise 0.5.5 + cargo update -p url --precise "2.5.0" - name: Build run: cargo build --features ${{ matrix.features }} --no-default-features - name: Clippy diff --git a/README.md b/README.md index cd94b31..f71e096 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,14 @@ Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. B

## Minimum Supported Rust Version (MSRV) -This library should compile with any combination of features with Rust 1.63.0. \ No newline at end of file + +This library should compile with any combination of features with Rust 1.63.0. + +To build with the MSRV you will need to pin dependencies as follows: + +```shell +cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5" +cargo update -p time --precise "0.3.20" +cargo update -p home --precise 0.5.5 +cargo update -p url --precise "2.5.0" +``` \ No newline at end of file