Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dart-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Pinned to match python-bindings.yml, same reasoning: a floating
# toolchain turns an unrelated Rust release into a red gate on an
# untouched branch.
- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: rustfmt, clippy

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0
with:
targets: ${{ matrix.target }}

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0

- uses: Swatinem/rust-cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/parity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# Must stay equal to `crates/rust-toolchain.toml`, for the same reason the
# Rust workflow pins it: rustup reads that file inside `crates/`, so a
# disagreement here installs one toolchain and builds with another.
- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0

- uses: Swatinem/rust-cache@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Pinned to match crates/rust-toolchain.toml, same reasoning as rust.yml:
# a floating toolchain turns an unrelated Rust release into a red gate on
# an untouched branch.
- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: rustfmt, clippy

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0

- uses: actions/setup-python@v7
with:
Expand All @@ -104,7 +104,7 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0

- uses: actions/setup-python@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# an untouched branch. This must stay equal to `crates/rust-toolchain.toml`
# — rustup reads that file inside `crates/`, so a disagreement here means
# the runner installs one toolchain and cargo silently fetches another.
- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0
with:
components: rustfmt, clippy

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# patch, and the committed core-harness.js/.d.ts (deterministic; see the
# drift check below) have to byte-match a build made with this exact
# toolchain.
- uses: dtolnay/rust-toolchain@1.97.1
- uses: dtolnay/rust-toolchain@1.100.0
with:
targets: wasm32-unknown-unknown

Expand Down
Loading