-
Notifications
You must be signed in to change notification settings - Fork 311
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
169385b ci: change MSRV to 1.63.0 (Steve Myers) Pull request description: ### Description fixes #331 ### Notes to the reviewers We won't merge this PR until LDK merges lightningdevkit/rust-lightning#2681. There are alot of clippy checks to fix at 1.63.0 so I left the clippy MSRV at 1.57.0 for now. ### Changelog notice Changed - MSRV is now 1.63.0 for bdk, chain, and bitcoind_rpc crates ### 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: evanlinjin: ACK 169385b Tree-SHA512: ad69038173b4f050b57f637fc06a4153cf76929992cfea77e3f25d1e66be102bd2f83a46401a7e3245e9cc54602210c95b75a578f18c5c8b55d1e7229e92197f
- Loading branch information
Showing
6 changed files
with
16 additions
and
64 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: | |
rust: | ||
- version: stable | ||
clippy: true | ||
- version: 1.57.0 # MSRV | ||
- version: 1.63.0 # MSRV | ||
features: | ||
- --no-default-features | ||
- --all-features | ||
|
@@ -28,28 +28,12 @@ jobs: | |
- name: Rust Cache | ||
uses: Swatinem/[email protected] | ||
- name: Pin dependencies for MSRV | ||
if: matrix.rust.version == '1.57.0' | ||
if: matrix.rust.version == '1.63.0' | ||
run: | | ||
cargo update -p log --precise "0.4.18" | ||
cargo update -p tempfile --precise "3.6.0" | ||
cargo update -p reqwest --precise "0.11.18" | ||
cargo update -p hyper-rustls --precise 0.24.0 | ||
cargo update -p rustls:0.21.9 --precise "0.21.1" | ||
cargo update -p rustls:0.20.9 --precise "0.20.8" | ||
cargo update -p tokio --precise "1.29.1" | ||
cargo update -p tokio-util --precise "0.7.8" | ||
cargo update -p flate2 --precise "1.0.26" | ||
cargo update -p h2 --precise "0.3.20" | ||
cargo update -p rustls-webpki:0.100.3 --precise "0.100.1" | ||
cargo update -p rustls-webpki:0.101.7 --precise "0.101.1" | ||
cargo update -p zip --precise "0.6.2" | ||
cargo update -p time --precise "0.3.13" | ||
cargo update -p byteorder --precise "1.4.3" | ||
cargo update -p webpki --precise "0.22.2" | ||
cargo update -p os_str_bytes --precise 6.5.1 | ||
cargo update -p sct --precise 0.7.0 | ||
cargo update -p cc --precise "1.0.81" | ||
cargo update -p time --precise "0.3.20" | ||
cargo update -p jobserver --precise "0.1.26" | ||
cargo update -p reqwest --precise "0.11.19" | ||
- name: Build | ||
run: cargo build ${{ matrix.features }} | ||
- name: Test | ||
|
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
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