From 1eb6b16d4db722740f2af83278301e42e83305fa Mon Sep 17 00:00:00 2001 From: Erdem Meydanli Date: Wed, 26 Jul 2023 09:33:49 +0000 Subject: [PATCH] Update the MSRV to 1.63.0. Signed-off-by: Erdem Meydanli --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- README.md | 9 ++++++--- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c598d04..8ae0039 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - rust: [1.60.0, stable, nightly] + rust: [1.63.0, stable, nightly] steps: - uses: actions/checkout@v2 - uses: dtolnay/rust-toolchain@master diff --git a/Makefile b/Makefile index 6ecfad4..b3fc5cf 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CONTAINER_TAG = nsm-api DOCKERFILES_PATH = ${SRC_PATH}/Dockerfiles BUILD_DOCKERFILE = ${DOCKERFILES_PATH}/Dockerfile.build TEST_DOCKERFILE = ${DOCKERFILES_PATH}/Dockerfile.test -COMP_VERSION = 1.60.0 +COMP_VERSION = 1.63.0 STABLE = stable NIGHTLY = nightly diff --git a/README.md b/README.md index 4e69964..767d9ee 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ ## Nitro Secure Module library -[![version]][crates.io] [![docs]][docs.rs] ![msrv] +[![version]][crates.io] +[![docs]][docs.rs] +![msrv] + [version]: https://img.shields.io/crates/v/aws-nitro-enclaves-nsm-api.svg [crates.io]: https://crates.io/crates/aws-nitro-enclaves-nsm-api [docs]: https://img.shields.io/docsrs/aws-nitro-enclaves-nsm-api [docs.rs]: https://docs.rs/aws-nitro-enclaves-nsm-api -[msrv]: https://img.shields.io/badge/MSRV-1.60.0-blue +[msrv]: https://img.shields.io/badge/MSRV-1.63.0-blue This is a collection of helpers which Nitro Enclaves userland applications can use to communicate with a connected NitroSecureModule (NSM) device. @@ -16,7 +19,7 @@ Various operations can be requested such as: - Entropy ## Prerequisites -An up-to-date RUST toolchain (v1.60.0 or later) +An up-to-date RUST toolchain (v1.63.0 or later) ## How To Build 1. Clone the repository