Skip to content

Commit 0cd2348

Browse files
Merge #1077: fix: msrv issues
b0b91b7 fix: msrv issues and update coverage toolchain (Vladimir Fomene) Pull request description: Fix breaking MSRV for 1.57.0 #### 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: danielabrozzoni: ACK b0b91b7 Tree-SHA512: d872f427da065c66346f0fd3ae19d4d62c535cf4444d236c0d1f6e9a5e169b7fd7773f643693daa23eeccbe6a3ddad6767f91520c7547360c07febc227a88f06
2 parents feafaac + b0b91b7 commit 0cd2348

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Rust toolchain
2020
uses: actions-rs/toolchain@v1
2121
with:
22-
toolchain: "1.65.0"
22+
toolchain: "1.67.0"
2323
override: true
2424
profile: minimal
2525
components: llvm-tools-preview

.github/workflows/cont_integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ jobs:
2929
uses: Swatinem/[email protected]
3030
- name: Pin dependencies for MSRV
3131
if: matrix.rust.version == '1.57.0'
32-
run: cargo update -p log --precise "0.4.18" && cargo update -p tempfile --precise "3.6.0" && cargo update -p rustls:0.21.6 --precise "0.21.1"
32+
run: |
33+
cargo update -p log --precise "0.4.18"
34+
cargo update -p tempfile --precise "3.6.0"
35+
cargo update -p rustls:0.21.6 --precise "0.21.1"
36+
cargo update -p tokio:1.31.0 --precise "1.29.1"
37+
cargo update -p flate2:1.0.27 --precise "1.0.26"
3338
- name: Build
3439
run: cargo build ${{ matrix.features }}
3540
- name: Test

0 commit comments

Comments
 (0)