Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install Rust toolchain
run: |
# Set the default toolchain. Installs the toolchain if it is not already installed.
rustup default 1.94.0
rustup default 1.94.1
cargo version
- name: Expose Pythons
run: |
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
- name: Install Rust toolchain
run: |
# Set the default toolchain. Installs the toolchain if it is not already installed.
rustup default 1.94.0
rustup default 1.94.1
cargo version
- name: Expose Pythons
run: |
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:
with:
key: macOS14-ARM64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down Expand Up @@ -473,7 +473,7 @@ jobs:
with:
key: Linux-x86_64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
key: Linux-ARM64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
with:
key: Linux-x86_64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
with:
key: macOS14-ARM64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
- name: Install Rust toolchain
run: |
# Set the default toolchain. Installs the toolchain if it is not already installed.
rustup default 1.94.0
rustup default 1.94.1
cargo version
- name: Expose Pythons
run: |
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:
- name: Install Rust toolchain
run: |
# Set the default toolchain. Installs the toolchain if it is not already installed.
rustup default 1.94.0
rustup default 1.94.1
cargo version
- name: Expose Pythons
run: |
Expand Down Expand Up @@ -564,7 +564,7 @@ jobs:
with:
key: macOS14-ARM64-rustup-${{ hashFiles('src/rust/rust-toolchain') }}-v2
path: |
~/.rustup/toolchains/1.94.0-*
~/.rustup/toolchains/1.94.1-*
~/.rustup/update-hashes
~/.rustup/settings.toml
- name: Cache Cargo
Expand Down
2 changes: 1 addition & 1 deletion src/rust/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.94.0"
channel = "1.94.1"
profile = "minimal"
components = ["clippy", "rustfmt"]
Loading