From 1f31fd86df56e94d027979925c41660ecc7cd6ae Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Fri, 26 Apr 2024 09:59:38 -0700 Subject: [PATCH] pkcs1: bump MSRV to 1.72 --- .github/workflows/pkcs1.yml | 4 ++-- pkcs1/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pkcs1.yml b/.github/workflows/pkcs1.yml index b10e2a124..9a3bed3d0 100644 --- a/.github/workflows/pkcs1.yml +++ b/.github/workflows/pkcs1.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: rust: - - 1.71.0 # MSRV + - 1.72.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -52,7 +52,7 @@ jobs: strategy: matrix: rust: - - 1.71.0 # MSRV + - 1.72.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/pkcs1/Cargo.toml b/pkcs1/Cargo.toml index c5320f52e..281813046 100644 --- a/pkcs1/Cargo.toml +++ b/pkcs1/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-i keywords = ["crypto", "key", "pem", "pkcs", "rsa"] readme = "README.md" edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [dependencies] der = { version = "=0.8.0-pre.0", features = ["oid"] }