Skip to content

Commit bd8122f

Browse files
authored
Update dependencies and Rust (#297)
1 parent b649af8 commit bd8122f

4 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ jobs:
8383
# https://github.com/rust-lang/rustup/issues/2441
8484
#
8585
# for more information.
86-
rustup toolchain install 1.97.0 --no-self-update # [ref:rust_1.97.0]
87-
rustup default 1.97.0 # [ref:rust_1.97.0]
86+
rustup toolchain install 1.97.1 --no-self-update # [ref:rust_1.97.1]
87+
rustup default 1.97.1 # [ref:rust_1.97.1]
8888
8989
# Add the targets.
9090
rustup target add x86_64-pc-windows-msvc
@@ -124,8 +124,8 @@ jobs:
124124
set -euxo pipefail
125125
126126
# Install the appropriate version of Rust.
127-
rustup toolchain install 1.97.0 # [ref:rust_1.97.0]
128-
rustup default 1.97.0 # [ref:rust_1.97.0]
127+
rustup toolchain install 1.97.1 # [ref:rust_1.97.1]
128+
rustup default 1.97.1 # [ref:rust_1.97.1]
129129
130130
# Add the targets.
131131
rustup target add x86_64-apple-darwin
@@ -204,8 +204,8 @@ jobs:
204204
set -euxo pipefail
205205
206206
# Install the appropriate version of Rust.
207-
rustup toolchain install 1.97.0 # [ref:rust_1.97.0]
208-
rustup default 1.97.0 # [ref:rust_1.97.0]
207+
rustup toolchain install 1.97.1 # [ref:rust_1.97.1]
208+
rustup default 1.97.1 # [ref:rust_1.97.1]
209209
210210
# Fetch the program version.
211211
VERSION="$(cargo pkgid | cut -d# -f2 | cut -d: -f2)"

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ clippy.pedantic = { level = "deny", priority = -1 }
1717
rust.warnings = "deny"
1818

1919
[dependencies]
20-
clap = { version = "4.6.1", features = ["derive", "wrap_help"] }
20+
clap = { version = "4.6.2", features = ["derive", "wrap_help"] }
2121
colored = "3.1.1"
22-
ignore = "0.4.28"
23-
regex = "1.13.0"
22+
ignore = "0.4.30"
23+
regex = "1.13.1"
2424
serde = { version = "1.0.228", features = ["derive"] }
2525
yaml_serde = "0.10.4"

toast.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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_2026-07-09]. The
20+
# version for the `trailing_comma` formatting option [tag:rust_fmt_nightly_2026-07-18]. 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-2026-07-09 --frozen --offline fmt --all -- "$@"; }
24+
cargo-fmt () { cargo +nightly-2026-07-18 --frozen --offline fmt --all -- "$@"; }
2525
2626
# Make Bash log commands.
2727
set -x
@@ -73,18 +73,18 @@ tasks:
7373
- install_packages
7474
- create_user
7575
command: |
76-
# Install stable Rust [tag:rust_1.97.0].
76+
# Install stable Rust [tag:rust_1.97.1].
7777
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
7878
-y \
79-
--default-toolchain 1.97.0 \
79+
--default-toolchain 1.97.1 \
8080
--profile minimal \
8181
--component clippy
8282
8383
# Add Rust tools to `$PATH`.
8484
. "$HOME/.cargo/env"
8585
86-
# Install nightly Rust [ref:rust_fmt_nightly_2026-07-09].
87-
rustup toolchain install nightly-2026-07-09 --profile minimal --component rustfmt
86+
# Install nightly Rust [ref:rust_fmt_nightly_2026-07-18].
87+
rustup toolchain install nightly-2026-07-18 --profile minimal --component rustfmt
8888
8989
install_tools:
9090
description: Install the tools needed to build and validate the program.

0 commit comments

Comments
 (0)