From d9695cb99ae28080bd4b4e60b3a90e4f4763caed Mon Sep 17 00:00:00 2001 From: Expotential108 Date: Tue, 6 Sep 2022 10:54:49 +0200 Subject: [PATCH] Upgrade Rust to 1.63.0 --- builders/Dockerfile.alpine | 2 +- builders/Dockerfile.cross | 2 +- builders/README.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/builders/Dockerfile.alpine b/builders/Dockerfile.alpine index 80b33ea..89b50b9 100644 --- a/builders/Dockerfile.alpine +++ b/builders/Dockerfile.alpine @@ -16,7 +16,7 @@ RUN set -eux \ RUN wget "https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-musl/rustup-init" \ && chmod +x rustup-init \ - && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.60.0 \ + && ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.63.0 \ && rm rustup-init \ && chmod -R a+w $RUSTUP_HOME $CARGO_HOME diff --git a/builders/Dockerfile.cross b/builders/Dockerfile.cross index 57abdb8..49e8bd1 100644 --- a/builders/Dockerfile.cross +++ b/builders/Dockerfile.cross @@ -1,4 +1,4 @@ -FROM rust:1.60.0-bullseye +FROM rust:1.63.0-bullseye # Install build dependencies RUN apt-get update \ diff --git a/builders/README.md b/builders/README.md index b5253aa..0939091 100644 --- a/builders/README.md +++ b/builders/README.md @@ -14,6 +14,10 @@ can do the cross-compilation. ## Changelog +**Version 0013:** + +- Update Rust to 1.63.0. + **Version 0012:** - Add cross-compilation setup to build `libwasmvm.x86_64.so` and `libwasmvm.aarch64.so`