Skip to content

Commit f3c0055

Browse files
committed
ci: pin url dependency version to build with rust 1.63
1 parent 4867b1b commit f3c0055

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/cont_integration.yml

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
5959
cargo update -p time --precise "0.3.20"
6060
cargo update -p home --precise 0.5.5
61+
cargo update -p url --precise "2.5.0"
6162
- name: Build
6263
run: cargo build --features ${{ matrix.features }} --no-default-features
6364
- name: Clippy

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,14 @@ Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. B
1313
</p>
1414

1515
## Minimum Supported Rust Version (MSRV)
16-
This library should compile with any combination of features with Rust 1.63.0.
16+
17+
This library should compile with any combination of features with Rust 1.63.0.
18+
19+
To build with the MSRV you will need to pin dependencies as follows:
20+
21+
```shell
22+
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
23+
cargo update -p time --precise "0.3.20"
24+
cargo update -p home --precise 0.5.5
25+
cargo update -p url --precise "2.5.0"
26+
```

0 commit comments

Comments
 (0)