Skip to content

Commit ef17d83

Browse files
committed
Bump MSRV to 1.85.0.
Signed-off-by: Elias Rohrer <dev@tnull.de>
1 parent c9d7764 commit ef17d83

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
toolchain: [ stable, beta, 1.75.0 ] # 1.75.0 is current MSRV for vss-client-ng
9+
toolchain: [ stable, beta, 1.85.0 ] # 1.85.0 is current MSRV for vss-client-ng
1010
include:
1111
- toolchain: stable
1212
check-fmt: true
13-
- toolchain: 1.75.0
13+
- toolchain: 1.85.0
1414
msrv: true
1515
runs-on: ubuntu-latest
1616
steps:
@@ -22,11 +22,6 @@ jobs:
2222
run: |
2323
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain ${{ matrix.toolchain }}
2424
rustup override set ${{ matrix.toolchain }}
25-
- name: Pin packages to allow for MSRV
26-
if: matrix.msrv
27-
run: |
28-
cargo update -p idna_adapter --precise 1.1.0 # This has us use `unicode-normalization` which has a more conservative MSRV
29-
cargo update -p proptest --precise "1.8.0" --verbose # proptest 1.9.0 requires rustc 1.82.0
3025
- name: Build on Rust ${{ matrix.toolchain }}
3126
run: cargo build --verbose --color always
3227
- name: Check formatting

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "vss-client-ng"
33
version = "0.4.1"
44
authors = ["Leo Nash <hello@leonash.net>", "Elias Rohrer <dev@tnull.de>"]
5-
rust-version = "1.75.0"
5+
rust-version = "1.85.0"
66
license = "MIT OR Apache-2.0"
77
edition = "2021"
88
homepage = "https://lightningdevkit.org/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ and manage the essential state required for Lightning Network (LN) operations.
99
Learn more [here](https://github.com/lightningdevkit/vss-server/blob/main/README.md).
1010

1111
## MSRV
12-
The Minimum Supported Rust Version (MSRV) is currently 1.75.0.
12+
The Minimum Supported Rust Version (MSRV) is currently 1.85.0.

0 commit comments

Comments
 (0)