msrv 1.73

This commit is contained in:
eschorn1 2024-02-09 17:50:05 -06:00
parent b0213416c8
commit 6b94ff1aa0
2 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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!