Skip to content

Commit 13c5b06

Browse files
Merge bitcoindevkit/rust-esplora-client#138: fix(ci): pin dependencies to MSRV supported versions
9a7e826f0a3ddf145bf15080274b6bc231dc5228 fix(ci): pin dependencies to MSRV supported version (Leonardo Lima) Pull request description: To fix the MSRV CI steps, the following dependencies needed to be pinned to a previous version: - `[email protected]` to 0.5.10 - `[email protected]` to 1.0.1 - `openssl` to 0.10.73 - `openssl-sys` to 0.9.109 - `syn` to 2.0.106 I want to fix the CI so we can move forward with #114. After we cut a release with that one, we can move on to bumping the MSRV. ACKs for top commit: ValuedMammal: ACK 9a7e826f0a3ddf145bf15080274b6bc231dc5228 Tree-SHA512: 4a13e03a1c66ba554926686149f5fc33ec926a11c94228a3402b87317c6e8958034483a04de84c072092c785de6229ff484da6ee8a3de33781788b5780139cb8
2 parents f6aaee7 + 3127619 commit 13c5b06

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/cont_integration.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,11 @@ jobs:
6868
cargo update -p parking_lot --precise "0.12.3"
6969
cargo update -p parking_lot_core --precise "0.9.10"
7070
cargo update -p lock_api --precise "0.4.12"
71-
cargo update -p [email protected] --precise "0.5.10"
72-
cargo update -p [email protected] --precise "1.0.1"
71+
cargo update -p [email protected] --precise "0.5.10"
72+
cargo update -p [email protected] --precise "1.0.1"
73+
cargo update -p openssl --precise "0.10.73"
74+
cargo update -p openssl-sys --precise "0.9.109"
75+
cargo update -p syn --precise "2.0.106"
7376
7477
cargo update -p bzip2-sys --precise "0.1.12+1.0.8" # dev-dependency
7578
- name: Build

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ cargo update -p tracing-core --precise "0.1.33"
3333
cargo update -p parking_lot --precise "0.12.3"
3434
cargo update -p parking_lot_core --precise "0.9.10"
3535
cargo update -p lock_api --precise "0.4.12"
36-
cargo update -p [email protected] --precise "0.5.10"
37-
cargo update -p [email protected] --precise "1.0.1"
36+
cargo update -p [email protected] --precise "0.5.10"
37+
cargo update -p [email protected] --precise "1.0.1"
38+
cargo update -p openssl --precise "0.10.73"
39+
cargo update -p openssl-sys --precise "0.9.109"
40+
cargo update -p syn --precise "2.0.106"
3841
```

0 commit comments

Comments
 (0)