File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 9
9
RUSTFLAGS : -D warnings
10
10
RUSTDOCFLAGS : -D warnings
11
11
TOOL : cargo
12
- MSRV : 1.63 .0
12
+ MSRV : 1.65 .0
13
13
ZFLAGS :
14
14
15
15
# Tests that don't require executing the build binaries
@@ -137,7 +137,7 @@ task:
137
137
- curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
138
138
- sh rustup.sh -y --profile=minimal --default-toolchain $MSRV
139
139
- . $HOME/.cargo/env
140
- - cargo install cross --version 0.2.1 # cross 0.2.2 bumped the MSRV to 1.58.1
140
+ - cargo install cross --version 0.2.5
141
141
<< : *TEST
142
142
before_cache_script : rm -rf $CARGO_HOME/registry/index
143
143
@@ -146,7 +146,7 @@ task:
146
146
matrix :
147
147
- name : Linux aarch64
148
148
arm_container :
149
- image : rust:1.63 .0
149
+ image : rust:1.65 .0
150
150
cpu : 1
151
151
depends_on :
152
152
- FreeBSD 14 amd64 & i686
@@ -160,13 +160,13 @@ task:
160
160
TARGET : aarch64-unknown-linux-gnu
161
161
- name : Linux x86_64
162
162
container :
163
- image : rust:1.63 .0
163
+ image : rust:1.65 .0
164
164
cpu : 1
165
165
env :
166
166
TARGET : x86_64-unknown-linux-gnu
167
167
- name : Linux x86_64 musl
168
168
container :
169
- image : rust:1.63 .0
169
+ image : rust:1.65 .0
170
170
cpu : 1
171
171
depends_on :
172
172
- FreeBSD 14 amd64 & i686
@@ -199,7 +199,7 @@ task:
199
199
# Tasks for cross-compiling, but no testing
200
200
task :
201
201
container :
202
- image : rust:1.63 .0
202
+ image : rust:1.65 .0
203
203
cpu : 1
204
204
depends_on :
205
205
- FreeBSD 14 amd64 & i686
Original file line number Diff line number Diff line change @@ -32,8 +32,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
32
32
33
33
### Changed
34
34
35
- - The MSRV is now 1.63
35
+ - The MSRV is now 1.65
36
36
([ #1862 ] ( https://github.com/nix-rust/nix/pull/1862 ) )
37
+ ([ #2104 ] ( https://github.com/nix-rust/nix/pull/2104 ) )
37
38
- The epoll interface now uses a type.
38
39
([ #1882 ] ( https://github.com/nix-rust/nix/pull/1882 ) )
39
40
- With I/O-safe type applied in ` pty::OpenptyResult ` and ` pty::ForkptyResult ` ,
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 = " 2021"
5
5
version = " 0.26.1"
6
- rust-version = " 1.63 "
6
+ rust-version = " 1.65 "
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 @@ -104,7 +104,7 @@ The following targets are supported by `nix`:
104
104
105
105
## Minimum Supported Rust Version (MSRV)
106
106
107
- nix is supported on Rust 1.63 and higher. Its MSRV will not be
107
+ nix is supported on Rust 1.65 and higher. Its MSRV will not be
108
108
changed in the future without bumping the major or minor version.
109
109
110
110
## Contributing
You can’t perform that action at this time.
0 commit comments