Skip to content

Commit ac129ba

Browse files
committed
Bump Rust version to 1.81
Signed-off-by: Costin Lupu <[email protected]>
1 parent a2e4731 commit ac129ba

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
rust: [1.71.1, stable, nightly]
14+
rust: [1.81, stable, nightly]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: dtolnay/rust-toolchain@master

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "1.4.3"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0"
7-
rust-version = "1.71"
7+
rust-version = "1.81"
88

99
[dependencies]
1010
serde = { version = ">=1.0", features = ["derive"] }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![msrv]
22

3-
[msrv]: https://img.shields.io/badge/MSRV-1.71.1-blue
3+
[msrv]: https://img.shields.io/badge/MSRV-1.81-blue
44

55
## Nitro Enclaves Command Line Interface (Nitro CLI)
66

SPECS/aws-nitro-enclaves-cli.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Source0: aws-nitro-enclaves-cli.tar.gz
3131
Source1: nitro-cli-dependencies.tar.gz
3232

3333
BuildRequires: openssl-devel
34-
BuildRequires: rust >= 1.71
35-
BuildRequires: cargo >= 1.71
34+
BuildRequires: rust >= 1.81
35+
BuildRequires: cargo >= 1.81
3636
BuildRequires: make
3737
BuildRequires: llvm
3838
BuildRequires: clang

driver-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
66
description = "Rust FFI bindings to Linux Nitro Enclaves driver generated using bindgen."
7-
rust-version = "1.68"
7+
rust-version = "1.81"

eif_loader/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "eif_loader"
33
version = "0.1.0"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
6-
rust-version = "1.68"
6+
rust-version = "1.81"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

enclave_build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "enclave_build"
33
version = "0.1.0"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
6-
rust-version = "1.71"
6+
rust-version = "1.81"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

samples/command_executer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "command-executer"
33
version = "0.1.0"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
6-
rust-version = "1.71"
6+
rust-version = "1.81"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

tools/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ RUN cd /tmp/openssl_src/openssl-${OPENSSL_VERSION} && \
3030
make install_sw
3131

3232
# Setup the right rust ver
33-
ENV RUST_VERSION=1.71.1
34-
ENV RUST_CARGO_AUDIT_VERSION=0.20.0
33+
ENV RUST_VERSION=1.81
34+
ENV RUST_CARGO_AUDIT_VERSION=0.21.2
3535
ENV RUST_CARGO_ABOUT_VERSION=0.6.6
3636

3737
RUN source $HOME/.cargo/env && \

vsock_proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "vsock-proxy"
33
version = "1.0.1"
44
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
55
edition = "2018"
6-
rust-version = "1.71"
6+
rust-version = "1.81"
77

88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

0 commit comments

Comments
 (0)