Skip to content

Commit ac6c1ce

Browse files
authored
merge: Merge pull request softprops#19 from rust-serverless/fix_compile_error
feat: update Rust version
2 parents a9be983 + f3593bc commit ac6c1ce

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ tests/test-*/test-out.log
22
target
33
.DS_Store
44
.vscode
5+
.idea

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.0-rust-1.56.0
2+
3+
* Upgrade to Rust [`1.56.0`](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html)
4+
15
# 0.4.0-rust-1.55.0
26

37
* Upgrade to Rust [`1.55.0`](https://blog.rust-lang.org/2021/09/09/Rust-1.55.0.html)

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM public.ecr.aws/lambda/provided:al2
22

3-
ARG RUST_VERSION=1.54.0
4-
RUN yum install -y jq openssl-devel
3+
ARG RUST_VERSION=1.56.0
4+
RUN yum install -y jq openssl-devel gcc
55
RUN set -o pipefail && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
66
| CARGO_HOME=/cargo RUSTUP_HOME=/rustup sh -s -- -y --profile minimal --default-toolchain $RUST_VERSION
77
COPY build.sh /usr/local/bin/

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
DOCKER ?= docker
22
INPUT_RELEASE_VERSION ?= 0.4.0
3-
RUST_VERSION ?= 1.55.0
3+
RUST_VERSION ?= 1.56.0
44
REPO ?= rustserverless/lambda-rust
55
TAG ?= latest
66

0 commit comments

Comments
 (0)