From: Matt Corallo Date: Thu, 14 Sep 2023 20:20:56 +0000 (+0000) Subject: Pin `syn` back to 2.0.32 fix MSRV in testing X-Git-Tag: v0.0.117-alpha1~10^2~2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=050f5a90297678f2cad36feee9a1db2367e35594;p=rust-lightning Pin `syn` back to 2.0.32 fix MSRV in testing --- diff --git a/ci/ci-tests.sh b/ci/ci-tests.sh index 8c675a65..74ba5a7d 100755 --- a/ci/ci-tests.sh +++ b/ci/ci-tests.sh @@ -29,6 +29,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace # The quote crate switched to Rust edition 2021 starting with v1.0.31, i.e., has MSRV of 1.56 [ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p quote --precise "1.0.30" --verbose +# The syn crate depends on too-new proc-macro2 starting with v2.0.33, i.e., has MSRV of 1.56 +[ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p syn:2.0.33 --precise "2.0.32" --verbose + # The proc-macro2 crate switched to Rust edition 2021 starting with v1.0.66, i.e., has MSRV of 1.56 [ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p proc-macro2 --precise "1.0.65" --verbose