Skip to content

Commit

Permalink
Merge #89: ci: pin url dependency version to build with rust 1.63
Browse files Browse the repository at this point in the history
546708a ci: pin url dependency version to build with rust 1.63 (Steve Myers)

Pull request description:

ACKs for top commit:
  oleonardolima:
    ACK 546708a :shipit:

Tree-SHA512: dd0f7f961a6b6c402ef7219a19006e606ff63274f837dc6aa91f3a43508be23352f6f51122fd0731205c31c9342964379345cdc04b2ef650e8f81d4e82a92c8a
  • Loading branch information
notmandatory committed Jun 17, 2024
2 parents bce24eb + 546708a commit 1da5295
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,14 @@ Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. B
</p>

## Minimum Supported Rust Version (MSRV)
This library should compile with any combination of features with Rust 1.63.0.

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"
```

0 comments on commit 1da5295

Please sign in to comment.