File tree 4 files changed +7
-5
lines changed
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ status = [
17
17
" build (stable, x86_64-unknown-linux-gnu)" ,
18
18
" build (stable, x86_64-unknown-linux-musl)" ,
19
19
20
- " build (1.46 .0, x86_64-unknown-linux-gnu)" ,
20
+ " build (1.59 .0, x86_64-unknown-linux-gnu)" ,
21
21
22
22
" checks"
23
23
]
Original file line number Diff line number Diff line change 33
33
34
34
include :
35
35
# MSRV
36
- - rust : 1.46 .0
36
+ - rust : 1.59 .0
37
37
TARGET : x86_64-unknown-linux-gnu
38
38
39
39
# Test nightly but don't fail
@@ -63,13 +63,15 @@ jobs:
63
63
args : --target=${{ matrix.TARGET }} --all-features
64
64
65
65
- name : Test
66
+ if : ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
66
67
uses : actions-rs/cargo@v1
67
68
with :
68
69
use-cross : true
69
70
command : test
70
71
args : --target=${{ matrix.TARGET }}
71
72
72
73
- name : Test all features
74
+ if : ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
73
75
uses : actions-rs/cargo@v1
74
76
with :
75
77
use-cross : true
@@ -107,10 +109,9 @@ jobs:
107
109
- uses : actions-rs/toolchain@v1
108
110
with :
109
111
profile : minimal
110
- toolchain : 1.46 .0
112
+ toolchain : 1.59 .0
111
113
components : clippy
112
114
113
115
- uses : actions-rs/clippy-check@v1
114
116
with :
115
117
token : ${{ secrets.GITHUB_TOKEN }}
116
-
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
12
12
## [ v0.5.1] - 2021-11-22
13
13
14
14
- Updated nix to version ` 0.23 ` .
15
+ - MSRV is now 1.59.0.
15
16
16
17
## [ v0.5.0] - 2021-09-21
17
18
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ to be considered reliable.
206
206
207
207
## Minimum Supported Rust Version (MSRV)
208
208
209
- This crate is guaranteed to compile on stable Rust 1.46 .0 and up. It * might*
209
+ This crate is guaranteed to compile on stable Rust 1.59 .0 and up. It * might*
210
210
compile with older versions but that may change in any new patch release.
211
211
212
212
## License
You can’t perform that action at this time.
0 commit comments