🔧 Avoid using global static mut variables when possible

This commit is contained in:
elenatorro 2025-03-05 16:26:34 +01:00
parent 0279e75c4b
commit 3a8ba4cbee
6 changed files with 270 additions and 218 deletions

View file

@ -264,7 +264,8 @@ RUN set -eux; \
./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION --default-host ${rustArch}; \
rm rustup-init; \
chmod -R a+w $RUSTUP_HOME $CARGO_HOME; \
rustup component add rustfmt;
rustup component add rustfmt; \
rustup component add clippy;
WORKDIR /usr/local