@@ -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
@@ -92,18 +92,18 @@ tasks:
92
92
- install_packages
93
93
- create_user
94
94
command : |
95
- # Install stable Rust [tag:rust_1.81 .0].
95
+ # Install stable Rust [tag:rust_1.83 .0].
96
96
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
97
97
-y \
98
- --default-toolchain 1.81 .0 \
98
+ --default-toolchain 1.83 .0 \
99
99
--profile minimal \
100
100
--component clippy
101
101
102
102
# Add Rust tools to `$PATH`.
103
103
. "$HOME/.cargo/env"
104
104
105
- # Install nightly Rust [ref:rust_fmt_nightly_2024-09-06 ].
106
- rustup toolchain install nightly-2024-09-06 --profile minimal --component rustfmt
105
+ # Install nightly Rust [ref:rust_fmt_nightly_2024-11-28 ].
106
+ rustup toolchain install nightly-2024-11-28 --profile minimal --component rustfmt
107
107
108
108
install_tools :
109
109
description : Install the tools needed to build and validate the program.
0 commit comments