Skip to content

Commit

Permalink
update msrv to 1.60
Browse files Browse the repository at this point in the history
Signed-off-by: Petre Eftime <[email protected]>
  • Loading branch information
Petre Eftime authored and petreeftime committed Apr 28, 2023
1 parent 5b13479 commit 190b358
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
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.58.1, stable, nightly]
rust: [1.60.0, stable, nightly]
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aws-nitro-enclaves-nsm-api"
version = "0.2.1"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
rust-version = "1.58.1"
rust-version = "1.60"
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.58.1
COMP_VERSION = 1.60.0
STABLE = stable
NIGHTLY = nightly

Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Nitro Secure Module library

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

This is a collection of helpers which Nitro Enclaves userland
applications can use to communicate with a connected NitroSecureModule (NSM) device.

Expand All @@ -9,7 +16,7 @@ Various operations can be requested such as:
- Entropy

## Prerequisites
An up-to-date RUST toolchain (v1.58.1 or later)
An up-to-date RUST toolchain (v1.60.0 or later)

## How To Build
1. Clone the repository
Expand All @@ -23,9 +30,6 @@ To run the tests it's required to build the command-executor tool, as follows:
make command-executor
```

## How to integrate this module in your Nitro Enclaves project
TODO: Link to AWS documentation

## License

This project is licensed under the Apache-2.0 License.
Expand Down

0 comments on commit 190b358

Please sign in to comment.