Skip to content

Commit 1aa9883

Browse files
Raise the MSRV to 1.63.0 to support AsFd
1 parent 89699b1 commit 1aa9883

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.cirrus.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
RUSTDOCFLAGS: -D warnings
1010
TOOL: cargo
1111
# The MSRV
12-
TOOLCHAIN: 1.56.1
12+
TOOLCHAIN: 1.63.0
1313
ZFLAGS:
1414

1515
# Tests that don't require executing the build binaries
@@ -140,18 +140,18 @@ task:
140140
matrix:
141141
- name: Linux aarch64
142142
arm_container:
143-
image: rust:1.56
143+
image: rust:1.63
144144
env:
145145
RUSTFLAGS: --cfg graviton -D warnings
146146
TARGET: aarch64-unknown-linux-gnu
147147
- name: Linux x86_64
148148
container:
149-
image: rust:1.56
149+
image: rust:1.63
150150
env:
151151
TARGET: x86_64-unknown-linux-gnu
152152
- name: Linux x86_64 musl
153153
container:
154-
image: rust:1.56
154+
image: rust:1.63
155155
env:
156156
TARGET: x86_64-unknown-linux-musl
157157
setup_script:
@@ -176,7 +176,7 @@ task:
176176
# Tasks for cross-compiling, but no testing
177177
task:
178178
container:
179-
image: rust:1.56
179+
image: rust:1.63
180180
env:
181181
BUILD: check
182182
HOST: x86_64-unknown-linux-gnu
@@ -250,7 +250,7 @@ task:
250250

251251
task:
252252
container:
253-
image: rust:1.56
253+
image: rust:1.63
254254
env:
255255
BUILD: check
256256
name: Redox x86_64

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
4343

4444
### Changed
4545

46-
- The MSRV is now 1.56.1
47-
([#1792](https://github.com/nix-rust/nix/pull/1792))
46+
- The MSRV is now 1.63.0
47+
([#1882](https://github.com/nix-rust/nix/pull/1882))
4848
- The `addr` argument of `sys::mman::mmap` is now of type `Option<NonZeroUsize>`.
4949
([#1870](https://github.com/nix-rust/nix/pull/1870))
5050
- The `length` argument of `sys::mman::mmap` is now of type `NonZeroUsize`.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "nix"
33
description = "Rust friendly bindings to *nix APIs"
44
edition = "2018"
55
version = "0.25.0"
6-
rust-version = "1.56"
6+
rust-version = "1.63"
77
authors = ["The nix-rust Project Developers"]
88
repository = "https://github.com/nix-rust/nix"
99
license = "MIT"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Tier 3:
8989

9090
## Minimum Supported Rust Version (MSRV)
9191

92-
nix is supported on Rust 1.56.1 and higher. Its MSRV will not be
92+
nix is supported on Rust 1.63.0 and higher. Its MSRV will not be
9393
changed in the future without bumping the major or minor version.
9494

9595
## Contributing

0 commit comments

Comments
 (0)