File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,6 +29,12 @@ function PIN_RELEASE_DEPS {
2929 # Starting with version 1.0.21, the `ryu` crate has an MSRV of rustc 1.68
3030 [ " $RUSTC_MINOR_VERSION " -lt 68 ] && cargo update -p ryu --precise " 1.0.20" --verbose
3131
32+ # Starting with version 1.0.23, the `unicode-ident` crate has an MSRV of rustc 1.71
33+ [ " $RUSTC_MINOR_VERSION " -lt 71 ] && cargo update -p unicode-ident --precise 1.0.22
34+
35+ # Starting with version 0.2.184, the `libc` crate has an MSRV of rustc 1.65
36+ [ " $RUSTC_MINOR_VERSION " -lt 65 ] && cargo update -p libc --precise 0.2.183 --verbose
37+
3238 return 0 # Don't fail the script if our rustc is higher than the last check
3339}
3440
@@ -75,6 +81,7 @@ pushd lightning-tests
7581[ " $RUSTC_MINOR_VERSION " -lt 68 ] && cargo update -p quote --precise " 1.0.41" --verbose
7682[ " $RUSTC_MINOR_VERSION " -lt 65 ] && cargo update -p regex --precise " 1.9.6" --verbose
7783[ " $RUSTC_MINOR_VERSION " -lt 68 ] && cargo update -p proc-macro2 --precise " 1.0.103" --verbose
84+ [ " $RUSTC_MINOR_VERSION " -lt 71 ] && cargo update -p unicode-ident --precise 1.0.22
7885cargo test
7986[ " $CI_MINIMIZE_DISK_USAGE " != " " ] && cargo clean
8087popd
You can’t perform that action at this time.
0 commit comments