Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
name: Verify build
strategy:
matrix:
toolchain: [stable, 1.63.0]
toolchain: [stable, 1.65.0]
include:
# Nightly has a lot of targets, so split it in half
- toolchain: nightly
Expand All @@ -62,7 +62,7 @@ jobs:
- toolchain: beta
only: '(aarch64|x86_64)' # just a spot check for beta
- toolchain: stable
- toolchain: 1.63.0 # msrv
- toolchain: 1.65.0 # msrv
runs-on: ubuntu-24.04
timeout-minutes: 25
env:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
run: |
set -eux
# Remove `-Dwarnings` at the MSRV since lints may be different
[ "${{ matrix.toolchain }}" = "1.63.0" ] && export RUSTFLAGS=""
[ "${{ matrix.toolchain }}" = "1.65.0" ] && export RUSTFLAGS=""
python3 ci/verify-build.py \
--toolchain "$TOOLCHAIN" \
${BASELINE_CRATE_DIR:+"--baseline-crate-dir" "$BASELINE_CRATE_DIR"} \
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = ["The Rust Project Developers"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/libc"
rust-version = "1.63"
rust-version = "1.65"

[package.metadata.docs.rs]
features = ["extra_traits"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The following features are deprecated:

## Rust version support

The minimum supported Rust toolchain version is currently **Rust 1.63**.
The minimum supported Rust toolchain version is currently **Rust 1.65**.

Increases to the MSRV are allowed to change without a major (i.e. semver-
breaking) release in order to avoid a ripple effect in the ecosystem. A policy
Expand Down