Skip to content

Commit 9af0fd4

Browse files
committed
Merge #1886: ci: pin minreq to 2.13.2, base64ct to 1.6.0 for MSRV
a186f00 ci: pin `minreq` to `2.13.2` (Luis Schwab) 1a3b420 ci: pin `base64ct` to `1.6.0` (Luis Schwab) Pull request description: <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description - Pin `minreq` to `2.13.2` because `2.13.3` uses the unstable `std::sync::LazyLock` (#1886 (comment)). - Pin `base64ct` to `1.6.0` for MSRV. Required for #1885 (`ubuntu-24.04` on all CI workflows). ### Checklists #### All Submissions: * [X] I've signed all my commits * [X] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [X] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: LagginTimes: ACK a186f00 ValuedMammal: ACK a186f00 Tree-SHA512: cfc78846c3225caa28bcd985bdec670ffccd564b6b8c4b9e9d6c8fdb3bf923005704118e994f1e211f8a52b7ddb34d9fe9b30d89a1d5254eca146f1720466e49
2 parents f44f2c6 + a186f00 commit 9af0fd4

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/cont_integration.yml

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050
cargo update -p home --precise "0.5.9"
5151
cargo update -p native-tls --precise "0.2.13"
5252
cargo update -p idna_adapter --precise "1.1.0"
53+
cargo update -p base64ct --precise "1.6.0"
54+
cargo update -p minreq --precise "2.13.2"
5355
- name: Pin dependencies for MSRV
5456
if: matrix.rust.version == '1.63.0'
5557
run: ./ci/pin-msrv.sh

ci/pin-msrv.sh

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ cargo update -p flate2 --precise "1.0.35"
2626
cargo update -p bzip2-sys --precise "0.1.12"
2727
cargo update -p ring --precise "0.17.12"
2828
cargo update -p once_cell --precise "1.20.3"
29+
cargo update -p base64ct --precise "1.6.0"
30+
cargo update -p minreq --precise "2.13.2"

0 commit comments

Comments
 (0)