File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
[toolchain ]
2
- channel = " 1.74.1 "
2
+ channel = " 1.75.0 "
3
3
components = [" rust-src" ]
4
4
targets = []
5
5
profile = " default"
Original file line number Diff line number Diff line change @@ -47,11 +47,11 @@ function check_toolchains {
47
47
exit 1
48
48
fi
49
49
# Check rust version.
50
- if ! rustup show | grep " 1.74 " > /dev/null; then
50
+ if ! rustup show | grep " 1.75 " > /dev/null; then
51
51
encourage_dev_container
52
- echo " Rust version 1.74 not installed."
52
+ echo " Rust version 1.75 not installed."
53
53
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 "
55
55
exit 1
56
56
fi
57
57
# Check wasi-sdk version.
Original file line number Diff line number Diff line change @@ -156,14 +156,14 @@ build:
156
156
COPY +foundry/opt/foundry /opt/foundry
157
157
ENV PATH= "/opt/foundry/bin:$PATH"
158
158
159
- # Install rust and cross-compilers. Noir specifically uses 1.74.1 .
159
+ # Install rust and cross-compilers. Noir specifically uses 1.75.0 .
160
160
# We remove base-build's rust first.
161
161
# We give everyone write ownership so downstream boxes can write.
162
162
ENV RUSTUP_HOME= /opt/rust/rustup
163
163
ENV CARGO_HOME= /opt/rust/cargo
164
164
ENV PATH= "/opt/rust/cargo/bin:$PATH"
165
165
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 && \
167
167
rustup target add wasm32-unknown-unknown wasm32-wasi aarch64-apple-darwin && \
168
168
chmod -R a+w /opt/rust
169
169
@@ -508,4 +508,4 @@ all-ci:
508
508
# TODO(#10677): this needs to be pushed while also updating our CI AMI
509
509
# BUILD +ci
510
510
BUILD +aztec-base
511
- BUILD +end-to-end-base
511
+ BUILD +end-to-end-base
You can’t perform that action at this time.
0 commit comments