From 6dd030df72d1d8ff4107ec14798ff3a6544d2338 Mon Sep 17 00:00:00 2001 From: mulhern Date: Wed, 14 Jan 2026 18:58:01 -0500 Subject: [PATCH] Increase lowest supported version of Rust to 1.85 Signed-off-by: mulhern --- .github/workflows/main.yml | 4 ++-- Cargo.toml | 2 +- libcryptsetup-rs-sys/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4281adbf..900dcae1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -117,7 +117,7 @@ jobs: # MANDATORY TESTING USING LOWEST SUPPORTED TOOLCHAIN lowest_supported: env: - TOOLCHAIN: 1.82.0 # LOWEST SUPPORTED RUST TOOLCHAIN + TOOLCHAIN: 1.85.0 # LOWEST SUPPORTED RUST TOOLCHAIN strategy: matrix: include: @@ -147,7 +147,7 @@ jobs: fedora: env: # Lowest supported - TOOLCHAIN: 1.82.0 # LOWEST SUPPORTED RUST TOOLCHAIN + TOOLCHAIN: 1.85.0 # LOWEST SUPPORTED RUST TOOLCHAIN strategy: matrix: include: diff --git a/Cargo.toml b/Cargo.toml index d1eae06a..491aff35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libcryptsetup-rs" version = "0.15.0" authors = ["John Baublitz "] edition = "2021" -rust-version = "1.82.0" # LOWEST SUPPORTED RUST TOOLCHAIN +rust-version = "1.85.0" # LOWEST SUPPORTED RUST TOOLCHAIN description = "High level Rust bindings for libcryptsetup" license = "MPL-2.0" documentation = "https://docs.rs/libcryptsetup-rs" diff --git a/libcryptsetup-rs-sys/Cargo.toml b/libcryptsetup-rs-sys/Cargo.toml index 826657ca..4991be83 100644 --- a/libcryptsetup-rs-sys/Cargo.toml +++ b/libcryptsetup-rs-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "libcryptsetup-rs-sys" version = "0.6.1" authors = ["John Baublitz "] edition = "2021" -rust-version = "1.82.0" # LOWEST SUPPORTED RUST TOOLCHAIN +rust-version = "1.85.0" # LOWEST SUPPORTED RUST TOOLCHAIN description = "Low level bindings for libcryptsetup" license = "MPL-2.0" documentation = "https://docs.rs/libcryptsetup-rs-sys"