From 6b94ff1aa08f071bf5186dd84b961ea110297695 Mon Sep 17 00:00:00 2001 From: eschorn1 Date: Fri, 9 Feb 2024 17:50:05 -0600 Subject: [PATCH] msrv 1.73 --- .github/workflows/test.yml | 12 ++++++------ README.md | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76a5606..7970a40 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: rust: - - 1.70.0 # MSRV + - 1.73.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -42,7 +42,7 @@ jobs: include: # 32-bit Linux - target: i686-unknown-linux-gnu - rust: 1.70.0 # MSRV + rust: 1.73.0 # MSRV deps: sudo apt update && sudo apt install gcc-multilib - target: i686-unknown-linux-gnu rust: stable @@ -50,7 +50,7 @@ jobs: # 64-bit Linux - target: x86_64-unknown-linux-gnu - rust: 1.70.0 # MSRV + rust: 1.73.0 # MSRV - target: x86_64-unknown-linux-gnu rust: stable steps: @@ -70,17 +70,17 @@ jobs: include: # ARM32 - target: armv7-unknown-linux-gnueabihf - rust: 1.70.0 # MSRV (cross) + rust: 1.73.0 # MSRV (cross) - target: armv7-unknown-linux-gnueabihf rust: stable # ARM64 - target: aarch64-unknown-linux-gnu - rust: 1.70.0 # MSRV (cross) + rust: 1.73.0 # MSRV (cross) - target: aarch64-unknown-linux-gnu rust: stable # PPC32 - target: powerpc-unknown-linux-gnu - rust: 1.70.0 # MSRV (cross) + rust: 1.73.0 # MSRV (cross) - target: powerpc-unknown-linux-gnu rust: stable runs-on: ubuntu-latest diff --git a/README.md b/README.md index 6c609d8..788dc5b 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,8 @@ The Rust [Documentation][docs-link] lives under each **Module** corresponding to * This crate is fully functional and corresponds to the first initial public draft of FIPS 205. * Constant-time assurances target the source-code level only, and are a work in progress. * Note that FIPS 205 places specific requirements on randomness per section 3.1, hence the exposed `RNG`. -* Requires Rust **1.70** or higher. The minimum supported Rust version may be changed in the future, but -it will be done with a minor version bump. +* Requires Rust **1.73** or higher due to `div_ceil()`. The minimum supported Rust version may be changed +in the future, but it will be done with a minor version bump. * All on-by-default features of this library are covered by SemVer. * This software is experimental and still under active development -- USE AT YOUR OWN RISK!