summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-22 21:47:42 +0200
committerRadosław Kot <rdkt13@gmail.com>2021-07-03 20:30:21 +0200
commit1a7ca3c95d180f315bf68319f576470301848890 (patch)
tree6455597f0e4276b845c68bc386b8088fd9826b30
parentf0f212ed7fd5364a2e4e4c67ef4b8a0b31106ade (diff)
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 <mail@beyermatthias.de> Tested-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 9fdd28e..23e8047 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.44.0
+ - 1.46.0
- stable
- beta
- nightly
@@ -44,7 +44,7 @@ jobs:
strategy:
matrix:
rust:
- - 1.44.0
+ - 1.46.0
- stable
- beta
- nightly
@@ -59,13 +59,13 @@ jobs:
override: true
- name: Run cargo test
- if: matrix.rust != 'nightly' && matrix.rust != '1.44.0'
+ if: matrix.rust != 'nightly' && matrix.rust != '1.46.0'
uses: actions-rs/cargo@v1
with:
command: test
- name: Run cargo test (nightly)
- if: matrix.rust == '1.44.0'
+ if: matrix.rust == '1.46.0'
continue-on-error: true
uses: actions-rs/cargo@v1
with: