adcc01c0bd CI: Fix pinning (Tobin C. Harding)

Pull request description:

  More crates broke our MSRV by using edition 2021 without doing a major release, pin them in the CI script.

  Other open PRs need this to get past CI.

ACKs for top commit:
  sanket1729:
    ACK adcc01c0bd

Tree-SHA512: 3fbaaf2677791c4761fb0543a09f855441a977aec8d277c01c12c3389ce64158833b6a5ea89a3cf4f2182b51f480849deaf8e33127a14f818024a1af95346baa
This commit is contained in:
sanket1729 2023-08-30 19:57:36 -07:00
commit c06c9beb01
No known key found for this signature in database
GPG Key ID: 648FFB183E0870A2
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,12 @@ if cargo --version | grep ${MSRV}; then
cargo update -p quote --precise 1.0.30 cargo update -p quote --precise 1.0.30
cargo update -p proc-macro2 --precise 1.0.63 cargo update -p proc-macro2 --precise 1.0.63
cargo update -p serde_test --precise 1.0.175 cargo update -p serde_test --precise 1.0.175
# Have to pin this so we can pin `schemars_derive`
cargo update -p schemars --precise 0.8.12
# schemars_derive 0.8.13 uses edition 2021
cargo update -p schemars_derive --precise 0.8.12
# memcrh 2.6.0 uses edition 2021
cargo update -p memchr --precise 2.5.0
cargo update -p bitcoin:0.30.1 --precise 0.30.0 cargo update -p bitcoin:0.30.1 --precise 0.30.0