@@ -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-11-02 ]. The
20+ # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2025-12-11 ]. 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-11-02 --frozen --offline fmt --all -- "$@"; }
24+ cargo-fmt () { cargo +nightly-2025-12-11 --frozen --offline fmt --all -- "$@"; }
2525
2626 # Load the NVM startup file, if it exists.
2727 if [ -f "$HOME/.nvm/nvm.sh" ]; then
@@ -75,18 +75,18 @@ tasks:
7575 - install_packages
7676 - create_user
7777 command : |
78- # Install stable Rust [tag:rust_1.91 .0].
78+ # Install stable Rust [tag:rust_1.92 .0].
7979 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
8080 -y \
81- --default-toolchain 1.91 .0 \
81+ --default-toolchain 1.92 .0 \
8282 --profile minimal \
8383 --component clippy
8484
8585 # Add Rust tools to `$PATH`.
8686 . "$HOME/.cargo/env"
8787
88- # Install nightly Rust [ref:rust_fmt_nightly_2025-11-02 ].
89- rustup toolchain install nightly-2025-11-02 --profile minimal --component rustfmt
88+ # Install nightly Rust [ref:rust_fmt_nightly_2025-12-11 ].
89+ rustup toolchain install nightly-2025-12-11 --profile minimal --component rustfmt
9090
9191 install_node :
9292 description : Install Node.js, a JavaScript runtime environment.
0 commit comments