Skip to content

Commit b5a6da3

Browse files
committed
Bump MSRV to
1 parent cf559ae commit b5a6da3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

avm-transpiler/rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.74.1"
2+
channel = "1.75.0"
33
components = ["rust-src"]
44
targets = []
55
profile = "default"

bootstrap.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ function check_toolchains {
4747
exit 1
4848
fi
4949
# Check rust version.
50-
if ! rustup show | grep "1.74" > /dev/null; then
50+
if ! rustup show | grep "1.75" > /dev/null; then
5151
encourage_dev_container
52-
echo "Rust version 1.74 not installed."
52+
echo "Rust version 1.75 not installed."
5353
echo "Installation:"
54-
echo " curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.74.1"
54+
echo " curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.75.0"
5555
exit 1
5656
fi
5757
# Check wasi-sdk version.

build-images/Earthfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,14 @@ build:
156156
COPY +foundry/opt/foundry /opt/foundry
157157
ENV PATH="/opt/foundry/bin:$PATH"
158158

159-
# Install rust and cross-compilers. Noir specifically uses 1.74.1.
159+
# Install rust and cross-compilers. Noir specifically uses 1.75.0.
160160
# We remove base-build's rust first.
161161
# We give everyone write ownership so downstream boxes can write.
162162
ENV RUSTUP_HOME=/opt/rust/rustup
163163
ENV CARGO_HOME=/opt/rust/cargo
164164
ENV PATH="/opt/rust/cargo/bin:$PATH"
165165
RUN apt remove -y cargo rustc
166-
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.74.1 && \
166+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.75.0 && \
167167
rustup target add wasm32-unknown-unknown wasm32-wasi aarch64-apple-darwin && \
168168
chmod -R a+w /opt/rust
169169

@@ -508,4 +508,4 @@ all-ci:
508508
# TODO(#10677): this needs to be pushed while also updating our CI AMI
509509
# BUILD +ci
510510
BUILD +aztec-base
511-
BUILD +end-to-end-base
511+
BUILD +end-to-end-base

0 commit comments

Comments
 (0)