File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ function PIN_RELEASE_DEPS {
14
14
# Starting with version 0.7.12, the `tokio-util` crate has an MSRV of rustc 1.70.0
15
15
[ " $RUSTC_MINOR_VERSION " -lt 70 ] && cargo update -p tokio-util --precise " 0.7.11" --verbose
16
16
17
+ # url 2.5.3 switched to idna 1.0.3 and ICU4X, which requires rustc 1.67 or newer.
18
+ # Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
19
+ [ " $RUSTC_MINOR_VERSION " -lt 67 ] && cargo update -p idna_adapter --precise " 1.1.0" --verbose
20
+
17
21
return 0 # Don't fail the script if our rustc is higher than the last check
18
22
}
19
23
@@ -73,10 +77,6 @@ cargo test -p lightning-block-sync --verbose --color always --features rpc-clien
73
77
cargo check -p lightning-block-sync --verbose --color always --features rpc-client,rest-client,tokio
74
78
75
79
if [[ " $HOST_PLATFORM " != * windows* ]]; then
76
- # url 2.5.3 switched to idna 1.0.3 and ICU4X, which requires rustc 1.67 or newer.
77
- # Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
78
- [ " $RUSTC_MINOR_VERSION " -lt 67 ] && cargo update -p idna_adapter --precise " 1.1.0" --verbose
79
-
80
80
echo -e " \n\nChecking Transaction Sync Clients with features."
81
81
cargo check -p lightning-transaction-sync --verbose --color always --features esplora-blocking
82
82
cargo check -p lightning-transaction-sync --verbose --color always --features esplora-async
You can’t perform that action at this time.
0 commit comments