File tree 4 files changed +12
-9
lines changed
4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 9
9
RUSTDOCFLAGS : -D warnings
10
10
TOOL : cargo
11
11
# The MSRV
12
- TOOLCHAIN : 1.56.1
12
+ TOOLCHAIN : 1.63
13
13
ZFLAGS :
14
14
15
15
# Tests that don't require executing the build binaries
@@ -140,23 +140,24 @@ task:
140
140
matrix :
141
141
- name : Linux aarch64
142
142
arm_container :
143
- image : rust:1.56
143
+ image : rust:1.63
144
144
env :
145
145
RUSTFLAGS : --cfg graviton -D warnings
146
146
TARGET : aarch64-unknown-linux-gnu
147
147
- name : Linux x86_64
148
148
container :
149
- image : rust:1.56
149
+ image : rust:1.63
150
150
env :
151
151
TARGET : x86_64-unknown-linux-gnu
152
152
- name : Linux x86_64 musl
153
153
container :
154
- image : rust:1.56
154
+ image : rust:1.63
155
155
env :
156
156
TARGET : x86_64-unknown-linux-musl
157
157
setup_script :
158
158
- rustup target add $TARGET
159
- - rustup component add clippy
159
+ - rustup toolchain install $TOOLCHAIN --profile minimal --target $TARGET
160
+ - rustup component add --toolchain $TOOLCHAIN clippy
160
161
<< : *TEST
161
162
before_cache_script : rm -rf $CARGO_HOME/registry/index
162
163
@@ -176,7 +177,7 @@ task:
176
177
# Tasks for cross-compiling, but no testing
177
178
task :
178
179
container :
179
- image : rust:1.56
180
+ image : rust:1.63
180
181
env :
181
182
BUILD : check
182
183
HOST : x86_64-unknown-linux-gnu
@@ -250,7 +251,7 @@ task:
250
251
251
252
task :
252
253
container :
253
- image : rust:1.56
254
+ image : rust:1.63
254
255
env :
255
256
BUILD : check
256
257
name : Redox x86_64
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
71
71
([ #1870 ] ( https://github.com/nix-rust/nix/pull/1870 ) )
72
72
- The ` length ` argument of ` sys::mman::mmap ` is now of type ` NonZeroUsize ` .
73
73
([ #1873 ] ( https://github.com/nix-rust/nix/pull/1873 ) )
74
+ - The MSRV is now 1.63
75
+ ([ #1862 ] ( https://github.com/nix-rust/nix/pull/1862 ) )
74
76
75
77
### Fixed
76
78
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "nix"
3
3
description = " Rust friendly bindings to *nix APIs"
4
4
edition = " 2018"
5
5
version = " 0.26.1"
6
- rust-version = " 1.56 "
6
+ rust-version = " 1.63 "
7
7
authors = [" The nix-rust Project Developers" ]
8
8
repository = " https://github.com/nix-rust/nix"
9
9
license = " MIT"
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ Tier 3:
89
89
90
90
## Minimum Supported Rust Version (MSRV)
91
91
92
- nix is supported on Rust 1.56.1 and higher. Its MSRV will not be
92
+ nix is supported on Rust 1.63 and higher. Its MSRV will not be
93
93
changed in the future without bumping the major or minor version.
94
94
95
95
## Contributing
You can’t perform that action at this time.
0 commit comments