Skip to content

Commit

Permalink
Attempt to build against Rust 1.84 (#1464)
Browse files Browse the repository at this point in the history
## Summary

It seems like Cross doesn't yet support 1.85.
  • Loading branch information
charliermarsh authored Feb 26, 2025
1 parent 9773cf0 commit e213938
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,32 +88,32 @@ jobs:
include:
- build: linux
os: ubuntu-22.04
rust: stable
rust: 1.84
target: x86_64-unknown-linux-musl
name: x86_64-linux
- build: linux-arm
os: ubuntu-22.04
rust: stable
rust: 1.84
target: aarch64-unknown-linux-musl
name: aarch64-linux
- build: macos
os: macos-14
rust: stable
rust: 1.84
target: x86_64-apple-darwin
name: x86_64-macos
- build: macos-arm
os: macos-14
rust: stable
rust: 1.84
target: aarch64-apple-darwin
name: aarch64-macos
- build: win-msvc
os: windows-2022
rust: stable
rust: 1.84
target: x86_64-pc-windows-msvc
name: x86_64-windows
- build: win32-msvc
os: windows-2022
rust: stable
rust: 1.84
target: i686-pc-windows-msvc
name: x86-windows

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.85"
channel = "1.84"

0 comments on commit e213938

Please sign in to comment.