Skip to content

Commit f48e70e

Browse files
committed
Bump MSRV to 1.63
We bump the MSRV to 1.63, which is the rustc version shipped in Debian Bookworm.
1 parent 5029b2f commit f48e70e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
toolchain: [
1010
stable,
1111
beta,
12-
1.60.0, # Our MSRV
12+
1.63.0, # Our MSRV
1313
]
1414
include:
1515
- toolchain: stable
1616
check-fmt: true
1717
build-uniffi: true
18-
- toolchain: 1.60.0
18+
- toolchain: 1.63.0
1919
msrv: true
2020
runs-on: ubuntu-latest
2121
steps:
@@ -28,8 +28,7 @@ jobs:
2828
- name: Pin packages to allow for MSRV
2929
if: matrix.msrv
3030
run: |
31-
cargo update -p hashlink --precise "0.8.1" --verbose # hashlink 0.8.2 requires hashbrown 0.13, requiring 1.61.0
32-
cargo update -p tempfile --precise "3.6.0" --verbose # tempfile 3.7.0 requires rustc 1.63.0
31+
cargo update -p hashlink --precise "0.8.2" --verbose # hashlink 0.8.3 requires hashbrown 0.14, requiring 1.64.0
3332
- name: Build on Rust ${{ matrix.toolchain }}
3433
run: cargo build --verbose --color always
3534
- name: Build with UniFFI support on Rust ${{ matrix.toolchain }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ LDK Node currently comes with a decidedly opinionated set of design choices:
6060
LDK Node itself is written in [Rust][rust] and may therefore be natively added as a library dependency to any `std` Rust program. However, beyond its Rust API it also offers language bindings for [Swift][swift], [Kotlin][kotlin], and [Python][python] based on the [UniFFI](https://github.com/mozilla/uniffi-rs/). Moreover, [Flutter bindings][flutter_bindings] are also available.
6161

6262
## MSRV
63-
The Minimum Supported Rust Version (MSRV) is currently 1.60.0.
63+
The Minimum Supported Rust Version (MSRV) is currently 1.63.0.
6464

6565
[api_docs]: https://docs.rs/ldk-node/*/ldk_node/
6666
[api_docs_node]: https://docs.rs/ldk-node/*/ldk_node/struct.Node.html

0 commit comments

Comments
 (0)