Skip to content

Commit 1a7ca3c

Browse files
matthiasbeyerszarykott
authored andcommitted
Bump MSRV to 1.46.0
Because one of our dependencies (namingly `socket2`) uses match in a const fn, which is stabilized in rust 1.46.0, we bump to this version as MSRV for this crate. Signed-off-by: Matthias Beyer <[email protected]> Tested-by: Matthias Beyer <[email protected]>
1 parent f0f212e commit 1a7ca3c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/msrv.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
rust:
12-
- 1.44.0
12+
- 1.46.0
1313
- stable
1414
- beta
1515
- nightly
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
matrix:
4646
rust:
47-
- 1.44.0
47+
- 1.46.0
4848
- stable
4949
- beta
5050
- nightly
@@ -59,13 +59,13 @@ jobs:
5959
override: true
6060

6161
- name: Run cargo test
62-
if: matrix.rust != 'nightly' && matrix.rust != '1.44.0'
62+
if: matrix.rust != 'nightly' && matrix.rust != '1.46.0'
6363
uses: actions-rs/cargo@v1
6464
with:
6565
command: test
6666

6767
- name: Run cargo test (nightly)
68-
if: matrix.rust == '1.44.0'
68+
if: matrix.rust == '1.46.0'
6969
continue-on-error: true
7070
uses: actions-rs/cargo@v1
7171
with:

0 commit comments

Comments
 (0)