File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 33set -eox pipefail
44
55# Currently unused as we don't have to pin anything for MSRV:
6- # RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
6+ RUSTC_MINOR_VERSION=$( rustc --version | awk ' { split($2,a,"."); print a[2] }' )
77
88# Some crates require pinning to meet our MSRV even for our downstream users,
99# which we do here.
@@ -17,6 +17,9 @@ PIN_RELEASE_DEPS # pin the release dependencies in our main workspace
1717# The backtrace v0.3.75 crate relies on rustc 1.82
1818[ " $RUSTC_MINOR_VERSION " -lt 82 ] && cargo update -p backtrace --precise " 0.3.74" --verbose
1919
20+ # proptest 1.9.0 requires rustc 1.82.0
21+ [ " $RUSTC_MINOR_VERSION " -lt 82 ] && cargo update -p proptest --precise " 1.8.0" --verbose
22+
2023export RUST_BACKTRACE=1
2124
2225echo -e " \n\nChecking the workspace, except lightning-transaction-sync."
You can’t perform that action at this time.
0 commit comments