Skip to content

Commit b7c1cbf

Browse files
committed
Update builder to Rust 1.81
1 parent 925f59e commit b7c1cbf

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

builders/Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 rust:1.80.0-alpine
1+
FROM --platform=linux/amd64 rust:1.81.0-alpine
22

33
RUN apk add --no-cache ca-certificates build-base
44

builders/Dockerfile.cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 rust:1.80.0-bookworm
1+
FROM --platform=linux/amd64 rust:1.81.0-bookworm
22

33
# Install build dependencies
44
RUN apt-get update \

builders/Dockerfile.debian

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ RUN apt update -y \
88

99
# GET FROM https://github.com/rust-lang/docker-rust-nightly
1010
ENV RUSTUP_HOME=/usr/local/rustup \
11-
CARGO_HOME=/usr/local/cargo \
12-
PATH=/usr/local/cargo/bin:$PATH
11+
CARGO_HOME=/usr/local/cargo \
12+
PATH=/usr/local/cargo/bin:$PATH
1313

1414
RUN wget --no-verbose "https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init" \
1515
&& chmod +x rustup-init \
16-
&& ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.80.0 \
16+
&& ./rustup-init -y --no-modify-path --profile minimal --default-toolchain 1.81.0 \
1717
&& rm rustup-init \
1818
&& chmod -R a+w $RUSTUP_HOME $CARGO_HOME \
1919
&& rustup --version \

builders/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Cross Compilation Scripts
22

3-
As this library is targetting go developers, we cannot assume a properly set up
3+
As this library is targeting go developers, we cannot assume a properly set up
44
rust environment on their system. Further, when importing this library, there is
55
no clean way to add a `libwasmvm.{so,dll,dylib}`. It needs to be committed with
66
the tagged (go) release in order to be easily usable.
@@ -23,7 +23,7 @@ See those DockerHub repos for all available versions of the builder images.
2323

2424
**Unreleased**
2525

26-
- Update Rust to 1.80.0.
26+
- Update Rust to 1.81.0.
2727
- Update Dockerfile.cross from Debian Bullseye to Bookworm ([#533])
2828
- Rename `.cargo/config` to `.cargo/config.toml` to silence warning
2929

0 commit comments

Comments
 (0)