Upgrade to Rust 1.79 (#4754)

## Summary

Updates default toolchain to
[1.79](https://blog.rust-lang.org/2024/06/13/Rust-1.79.0.html).
There didn't seem to be any breaking changes besides xwin now requiring
lld llvm linker.

## Test Plan

Existing tests.
This commit is contained in:
samypr100 2024-07-03 00:50:47 -04:00 committed by GitHub
parent ebfe6d8fcc
commit f43a8bbd6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ jobs:
with:
tool: cargo-xwin
- name: Install xwin dependencies
run: sudo apt-get install --no-install-recommends -y llvm clang cmake ninja-build
run: sudo apt-get install --no-install-recommends -y lld llvm clang cmake ninja-build
- name: "Clippy"
run: cargo xwin clippy --target x86_64-pc-windows-msvc --workspace --all-targets --all-features --locked --profile fast-build -- -D warnings
env:

View file

@ -1,2 +1,2 @@
[toolchain]
channel = "1.78"
channel = "1.79"