ci: pin msrv dep version for rustls

This commit is contained in:
Steve Myers 2024-11-25 09:25:07 -08:00
parent 6e2a9b4b64
commit b0a1bfb0cb
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051
2 changed files with 15 additions and 0 deletions

View File

@ -28,6 +28,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: Pin dependencies for MSRV
if: matrix.rust == '1.63.0'
run: |
cargo update -p rustls --precise "0.23.17"
- name: Test
run: cargo test --verbose --all-features
- name: Setup iptables for the timeout test

View File

@ -9,3 +9,14 @@
[Rust Blog]: https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html
Bitcoin Electrum client library. Supports plaintext, TLS and Onion servers.
## Minimum Supported Rust Version (MSRV)
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 rustls --precise "0.23.17"
```