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 99 RUSTFLAGS : -D warnings
1010 RUSTDOCFLAGS : -D warnings
1111 TOOL : cargo
12- MSRV : 1.63 .0
12+ MSRV : 1.65 .0
1313 ZFLAGS :
1414
1515# Tests that don't require executing the build binaries
@@ -137,7 +137,7 @@ task:
137137 - curl --proto '=https' --tlsv1.2 -sSf -o rustup.sh https://sh.rustup.rs
138138 - sh rustup.sh -y --profile=minimal --default-toolchain $MSRV
139139 - . $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
141141 << : *TEST
142142 before_cache_script : rm -rf $CARGO_HOME/registry/index
143143
@@ -146,7 +146,7 @@ task:
146146 matrix :
147147 - name : Linux aarch64
148148 arm_container :
149- image : rust:1.63 .0
149+ image : rust:1.65 .0
150150 cpu : 1
151151 depends_on :
152152 - FreeBSD 14 amd64 & i686
@@ -160,13 +160,13 @@ task:
160160 TARGET : aarch64-unknown-linux-gnu
161161 - name : Linux x86_64
162162 container :
163- image : rust:1.63 .0
163+ image : rust:1.65 .0
164164 cpu : 1
165165 env :
166166 TARGET : x86_64-unknown-linux-gnu
167167 - name : Linux x86_64 musl
168168 container :
169- image : rust:1.63 .0
169+ image : rust:1.65 .0
170170 cpu : 1
171171 depends_on :
172172 - FreeBSD 14 amd64 & i686
@@ -199,7 +199,7 @@ task:
199199# Tasks for cross-compiling, but no testing
200200task :
201201 container :
202- image : rust:1.63 .0
202+ image : rust:1.65 .0
203203 cpu : 1
204204 depends_on :
205205 - 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/).
3232
3333### Changed
3434
35- - The MSRV is now 1.63
35+ - The MSRV is now 1.65
3636 ([ #1862 ] ( https://github.com/nix-rust/nix/pull/1862 ) )
37+ ([ #2104 ] ( https://github.com/nix-rust/nix/pull/2104 ) )
3738- The epoll interface now uses a type.
3839 ([ #1882 ] ( https://github.com/nix-rust/nix/pull/1882 ) )
3940- 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"
33description = " Rust friendly bindings to *nix APIs"
44edition = " 2021"
55version = " 0.26.1"
6- rust-version = " 1.63 "
6+ rust-version = " 1.65 "
77authors = [" The nix-rust Project Developers" ]
88repository = " https://github.com/nix-rust/nix"
99license = " MIT"
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ The following targets are supported by `nix`:
104104
105105## Minimum Supported Rust Version (MSRV)
106106
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
108108changed in the future without bumping the major or minor version.
109109
110110## Contributing
You can’t perform that action at this time.
0 commit comments