Fix `lightning-block-sync` builds below rustc 1.56 due to serde_json 2023-07-fix-msrv
authorMatt Corallo <git@bluematt.me>
Wed, 12 Jul 2023 16:10:45 +0000 (16:10 +0000)
committerMatt Corallo <git@bluematt.me>
Wed, 12 Jul 2023 16:10:45 +0000 (16:10 +0000)
ci/ci-tests.sh

index 40e118a2fd05094c965d6fecd4b6ae61505e1769..bda5a34e21d928db782caae38ac44356eb448fb1 100755 (executable)
@@ -14,6 +14,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
 # The addr2line v0.20 crate (a dependency of `backtrace` starting with 0.3.68) relies on 1.55+
 [ "$RUSTC_MINOR_VERSION" -lt 55 ] && cargo update -p backtrace --precise "0.3.67" --verbose
 
+# serde_json 1.0.101 switched to edition 2021, which requires 1.56+
+[ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p serde_json --precise "1.0.100" --verbose
+
 [ "$LDK_COVERAGE_BUILD" != "" ] && export RUSTFLAGS="-C link-dead-code"
 
 export RUST_BACKTRACE=1