Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the MSRV to 1.63.0 #49

Merged
merged 2 commits into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.4.0

Changes:
* Update minimum supported rust version to 1.63.0.

# 0.3.0

Changes:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "aws-nitro-enclaves-nsm-api"
version = "0.3.0"
version = "0.4.0"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
rust-version = "1.60"
rust-version = "1.63"
license = "Apache-2.0"
description = "This library provides the API for the Nitro Secure Module used in AWS Nitro Enclaves."
keywords = ["Nitro", "Enclaves", "AWS"]
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nsm-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nsm-lib"
version = "0.3.0"
version = "0.4.0"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion nsm-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nsm-test"
version = "0.3.0"
version = "0.4.0"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"

Expand Down
Loading