@@ -17,11 +17,11 @@ command_prefix: |
17
17
cargo-offline () { cargo --frozen --offline "$@"; }
18
18
19
19
# 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_2024-09-06 ]. The
20
+ # version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2024-11-28 ]. The
21
21
# nightly version was chosen as the latest available release with all components present
22
22
# according to this page:
23
23
# https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu.html
24
- cargo-fmt () { cargo +nightly-2024-09-06 --frozen --offline fmt --all -- "$@"; }
24
+ cargo-fmt () { cargo +nightly-2024-11-28 --frozen --offline fmt --all -- "$@"; }
25
25
26
26
# Make Bash log commands.
27
27
set -x
@@ -73,18 +73,18 @@ tasks:
73
73
- install_packages
74
74
- create_user
75
75
command : |
76
- # Install stable Rust [tag:rust_1.81 .0].
76
+ # Install stable Rust [tag:rust_1.83 .0].
77
77
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
78
78
-y \
79
- --default-toolchain 1.81 .0 \
79
+ --default-toolchain 1.83 .0 \
80
80
--profile minimal \
81
81
--component clippy
82
82
83
83
# Add Rust tools to `$PATH`.
84
84
. "$HOME/.cargo/env"
85
85
86
- # Install nightly Rust [ref:rust_fmt_nightly_2024-09-06 ].
87
- rustup toolchain install nightly-2024-09-06 --profile minimal --component rustfmt
86
+ # Install nightly Rust [ref:rust_fmt_nightly_2024-11-28 ].
87
+ rustup toolchain install nightly-2024-11-28 --profile minimal --component rustfmt
88
88
89
89
install_tools :
90
90
description : Install the tools needed to build and validate the program.
0 commit comments