From 06d54e3b8ef8e518117054cac085fe047370a282 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 2 Jan 2025 07:58:40 -0500 Subject: [PATCH 1/2] Increase LOWEST SUPPORTED RUST TOOCHAIN TO 1.74.0 Signed-off-by: mulhern --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e47f0195..8caae25e 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.71.1 # LOWEST SUPPORTED RUST TOOLCHAIN + TOOLCHAIN: 1.74.0 # LOWEST SUPPORTED RUST TOOLCHAIN strategy: matrix: include: @@ -147,7 +147,7 @@ jobs: fedora: env: # Lowest supported - TOOLCHAIN: 1.71.1 # LOWEST SUPPORTED RUST TOOLCHAIN + TOOLCHAIN: 1.74.0 # LOWEST SUPPORTED RUST TOOLCHAIN strategy: matrix: include: From f21854171ae0caf078e9b0923a5bbec3e78a2e71 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 2 Jan 2025 07:57:50 -0500 Subject: [PATCH 2/2] Cargo.toml: Increase rust-version to 1.74.0 Signed-off-by: mulhern --- Cargo.toml | 2 +- libcryptsetup-rs-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 96844712..5de72be3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libcryptsetup-rs" version = "0.11.0" authors = ["John Baublitz "] edition = "2021" -rust-version = "1.71.1" # LOWEST SUPPORTED RUST TOOLCHAIN +rust-version = "1.74.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 5dc63405..5daf06e7 100644 --- a/libcryptsetup-rs-sys/Cargo.toml +++ b/libcryptsetup-rs-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "libcryptsetup-rs-sys" version = "0.4.0" authors = ["John Baublitz "] edition = "2021" -rust-version = "1.71.1" # LOWEST SUPPORTED RUST TOOLCHAIN +rust-version = "1.74.0" # LOWEST SUPPORTED RUST TOOLCHAIN description = "Low level bindings for libcryptsetup" license = "MPL-2.0" documentation = "https://docs.rs/libcryptsetup-rs-sys"