Skip to content

Commit 28ef147

Browse files
authored
Merge pull request #4180 from tnull/2025-10-bump-electrsd
Bump `electrsd` to 0.36.1, fix CI
2 parents dcad93c + 9753e6d commit 28ef147

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ci/ci-tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -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+
2023
export RUST_BACKTRACE=1
2124

2225
echo -e "\n\nChecking the workspace, except lightning-transaction-sync."

ci/ci-tx-sync-tests.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ function PIN_RELEASE_DEPS {
1414

1515
PIN_RELEASE_DEPS # pin the release dependencies
1616

17-
# Starting with version 0.5.11, the `home` crate has an MSRV of rustc 1.81.0.
18-
[ "$RUSTC_MINOR_VERSION" -lt 81 ] && cargo update -p home --precise "0.5.9" --verbose
19-
2017
# Starting with version 1.2.0, the `idna_adapter` crate has an MSRV of rustc 1.81.0.
2118
[ "$RUSTC_MINOR_VERSION" -lt 81 ] && cargo update -p idna_adapter --precise "1.1.0" --verbose
2219

lightning-transaction-sync/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ lightning = { version = "0.2.0", path = "../lightning", default-features = false
4444
tokio = { version = "1.35.0", features = ["macros"] }
4545

4646
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
47-
electrsd = { version = "0.35.0", default-features = false, features = ["legacy"] }
48-
corepc-node = { version = "0.8.0", default-features = false, features = ["28_0"] }
47+
electrsd = { version = "0.36.0", default-features = false, features = ["legacy"] }
48+
corepc-node = { version = "0.10.0", default-features = false, features = ["28_0"] }
4949

5050
[lints.rust.unexpected_cfgs]
5151
level = "forbid"

0 commit comments

Comments
 (0)