Skip to content

Commit bfc1b6f

Browse files
committed
Lower the MSRV to 1.63
This will get us compatibility with Debian stable. If this turns out to be problematic, we can always raise it back in the time before 1.0 is released.
1 parent b9c6d8a commit bfc1b6f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/full_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
stable,
155155
beta,
156156
nightly,
157-
1.71.0,
157+
1.63.0,
158158
]
159159
steps:
160160
- uses: actions/checkout@v4
@@ -179,7 +179,7 @@ jobs:
179179
- { toolchain: stable, os: macos-14 }
180180
- { toolchain: beta, os: macos-14 }
181181
- { toolchain: nightly, os: macos-14 }
182-
- { toolchain: 1.71.0, os: macos-14 }
182+
- { toolchain: 1.63.0, os: macos-14 }
183183
runs-on: ${{ matrix.target.os }}
184184
steps:
185185
- uses: actions/checkout@v4
@@ -200,7 +200,7 @@ jobs:
200200
fail-fast: true
201201
matrix:
202202
toolchain: [
203-
1.71.0,
203+
1.63.0,
204204
stable,
205205
]
206206
steps:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = ["/ci/*", "/.github/*", "/.cirrus.yml", "/triagebot.toml"]
1414
description = """
1515
Raw FFI bindings to platform libraries like libc.
1616
"""
17-
rust-version = "1.71.0"
17+
rust-version = "1.63.0"
1818

1919
[package.metadata.docs.rs]
2020
features = ["const-extern-fn", "extra_traits"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ libc = "0.2"
5252

5353
## Rust version support
5454

55-
The minimum supported Rust toolchain version is currently **Rust 1.71.0**
55+
The minimum supported Rust toolchain version is currently **Rust 1.63.0**
5656
(libc does not currently have any policy regarding changes to the minimum
5757
supported Rust version; such policy is a work in progress).
5858

0 commit comments

Comments
 (0)