Merge bitcoindevkit/bdk#1505: ci: pin cc dependency version to build with rust 1.63

3f9ed95e2e84ea1d938ecab406740d23cf25db1b ci: pin cc dependency version to build with rust 1.63 (Wei Chen)

Pull request description:

  <!-- You can erase any parts of this template not applicable to your Pull Request. -->

  ### Description

  <!-- Describe the purpose of this PR, what's being adding and/or fixed -->
  `cc` version 1.0.106 raised `msrv` to 1.67.
  The previous working version 1.0.105 was pinned for CI to continue working.

  ### Notes to the reviewers

  <!-- In this section you can include notes directed to the reviewers, like explaining why some parts
  of the PR were done in a specific way -->

  ### Changelog notice

  <!-- Notice the release manager should include in the release tag message changelog -->
  <!-- See https://keepachangelog.com/en/1.0.0/ for examples -->
  * Pinned cc dependency version to build with rust 1.63.

  ### 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:
  storopoli:
    ACK 3f9ed95e2e84ea1d938ecab406740d23cf25db1b
  notmandatory:
    ACK 3f9ed95e2e84ea1d938ecab406740d23cf25db1b

Tree-SHA512: 995786f214c06db278daa07643489cdae557c14ffda4b873d2951ca6b52de64630e39dafcbc43cecaede0911fd6d137b992a868478d4bae674e73b4ecc18650b
This commit is contained in:
Steve Myers 2024-07-08 10:41:08 -05:00
commit 1a39821b88
No known key found for this signature in database
GPG Key ID: 8105A46B22C2D051
2 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,7 @@ jobs:
cargo update -p home --precise "0.5.5" cargo update -p home --precise "0.5.5"
cargo update -p proptest --precise "1.2.0" cargo update -p proptest --precise "1.2.0"
cargo update -p url --precise "2.5.0" cargo update -p url --precise "2.5.0"
cargo update -p cc --precise "1.0.105"
- name: Build - name: Build
run: cargo build ${{ matrix.features }} run: cargo build ${{ matrix.features }}
- name: Test - name: Test

View File

@ -73,6 +73,7 @@ cargo update -p time --precise "0.3.20"
cargo update -p home --precise "0.5.5" cargo update -p home --precise "0.5.5"
cargo update -p proptest --precise "1.2.0" cargo update -p proptest --precise "1.2.0"
cargo update -p url --precise "2.5.0" cargo update -p url --precise "2.5.0"
cargo update -p cc --precise "1.0.105"
``` ```
## License ## License