From f43a8bbd6f2c25aef7d00f4807e1bdd05e3d2b7c Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Wed, 3 Jul 2024 00:50:47 -0400 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a79f3b9324d5..004c3544160d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 744175d523f9..c6e4d7d5031f 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "1.78" +channel = "1.79"