From 7257824c84a33f987f754b5d67562110c50e9835 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 2 Jan 2025 07:41:13 -0500 Subject: [PATCH 1/2] Increase LOWEST SUPPORTED RUST TOOLCHAIN to 1.74.0 Signed-off-by: mulhern --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index abd701c0..35cd104b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,7 +59,7 @@ jobs: strategy: matrix: include: - - toolchain: 1.71.1 # LOWEST SUPPORTED RUST TOOLCHAIN + - toolchain: 1.74.0 # LOWEST SUPPORTED RUST TOOLCHAIN - toolchain: 1.83.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN runs-on: ubuntu-20.04 steps: From ecc44e99df16c1c5dada866b6a5be601ac0cb587 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 2 Jan 2025 07:37:00 -0500 Subject: [PATCH 2/2] Increase rust-version to 1.74.0 Signed-off-by: mulhern --- Cargo.toml | 2 +- devicemapper-rs-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e64f694b..cc901a72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ categories = ["os::linux-apis", "api-bindings"] keywords = ["Linux", "device", "mapper", "libdm", "storage"] license = "MPL-2.0" edition = "2021" -rust-version = "1.71.1" # LOWEST SUPPORTED RUST TOOLCHAIN +rust-version = "1.74.0" # LOWEST SUPPORTED RUST TOOLCHAIN exclude = [".clippy.toml", ".githooks/*", ".gitignore", ".github/*", "Makefile"] [dependencies] diff --git a/devicemapper-rs-sys/Cargo.toml b/devicemapper-rs-sys/Cargo.toml index e7e0e3ed..781bef1b 100644 --- a/devicemapper-rs-sys/Cargo.toml +++ b/devicemapper-rs-sys/Cargo.toml @@ -3,7 +3,7 @@ name = "devicemapper-sys" version = "0.3.1" authors = ["Stratis Developers "] 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 devicemapper" license = "MPL-2.0" documentation = "https://docs.rs/devicemapper-rs-sys"