-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3dc4dac ci(clippy): bump to `1.84` (Leonardo Lima) 5a476fd deps(rustls): bump to `0.23.21` (Leonardo Lima) ec90685 ci(msrv): bump rust MSRV to `1.75` (Leonardo Lima) Pull request description: partially fixes bitcoindevkit/bdk#1750 It bumps the project MSRV to `1.75.0` in order to follow along with LDK changes, and to remove the pinned version of `rustls`, which now is under `1.71` MSRV, bumping it to latest `0.23.21`. It also updates the `clippy` step on CI to use rust `1.84`, fixing the found clippy issues. ACKs for top commit: tnull: > ACK [3dc4dac](3dc4dac) ValuedMammal: ACK 3dc4dac notmandatory: ACK 3dc4dac Tree-SHA512: 3b9c2feffc8cc32cb9751a36406e7f0d5ed4692afa1af186621bef93da924def3e23c5132e004deef955e40bd7c3242a2d07c33e3843b1b76b613be2f54afefe
- Loading branch information
Showing
7 changed files
with
16 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
matrix: | ||
rust: | ||
- stable # STABLE | ||
- 1.63.0 # MSRV | ||
- 1.75.0 # MSRV | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -28,10 +28,6 @@ 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.19" | ||
- name: Test | ||
run: cargo test --verbose --all-features | ||
- name: Setup iptables for the timeout test | ||
|
@@ -61,12 +57,13 @@ jobs: | |
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check | ||
|
||
clippy_check: | ||
name: Rust clippy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
toolchain: 1.78.0 | ||
toolchain: 1.84.0 | ||
components: clippy | ||
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
msrv="1.63.0" | ||
msrv="1.75.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters