We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lightning-transaction-sync
1 parent f6e0ad2 commit f38b80aCopy full SHA for f38b80a
ci/ci-tests.sh
@@ -77,7 +77,12 @@ popd
77
echo -e "\n\nTesting no-std build on a downstream no-std crate"
78
# check no-std compatibility across dependencies
79
pushd no-std-check
80
-cargo check --verbose --color always --features lightning-transaction-sync
+if [[ $RUSTC_MINOR_VERSION -gt 67 ]]; then
81
+ # lightning-transaction-sync's MSRV is 1.67
82
+ cargo check --verbose --color always --features lightning-transaction-sync
83
+else
84
+ cargo check --verbose --color always
85
+fi
86
popd
87
88
# Test that we can build downstream code with only the "release pins".
0 commit comments