@@ -17,11 +17,11 @@ command_prefix: |
1717 cargo-offline () { cargo --frozen --offline "$@"; }
1818
1919 # Use this wrapper for formatting code or checking that code is formatted. We use a nightly Rust
20- # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2025-05-17 ]. The
20+ # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2025-07-06 ]. The
2121 # nightly version was chosen as the latest available release with all components present
2222 # according to this page:
2323 # https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu.html
24- cargo-fmt () { cargo +nightly-2025-05-17 --frozen --offline fmt --all -- "$@"; }
24+ cargo-fmt () { cargo +nightly-2025-07-06 --frozen --offline fmt --all -- "$@"; }
2525
2626 # Make Bash log commands.
2727 set -x
@@ -69,18 +69,18 @@ tasks:
6969 - install_packages
7070 - create_user
7171 command : |
72- # Install stable Rust [tag:rust_1.87 .0].
72+ # Install stable Rust [tag:rust_1.88 .0].
7373 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
7474 -y \
75- --default-toolchain 1.87 .0 \
75+ --default-toolchain 1.88 .0 \
7676 --profile minimal \
7777 --component clippy
7878
7979 # Add Rust tools to `$PATH`.
8080 . "$HOME/.cargo/env"
8181
82- # Install nightly Rust [ref:rust_fmt_nightly_2025-05-17 ].
83- rustup toolchain install nightly-2025-05-17 --profile minimal --component rustfmt
82+ # Install nightly Rust [ref:rust_fmt_nightly_2025-07-06 ].
83+ rustup toolchain install nightly-2025-07-06 --profile minimal --component rustfmt
8484
8585 install_tools :
8686 description : Install the tools needed to build and validate the program.
0 commit comments