From 94d9212b9d9e44291267182aae8cd134e8b4e6d8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 07:16:44 +0000 Subject: [PATCH 1/2] chore(deps): update rust to nightly-2026-06-10 --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 28f78048de..84f232dc49 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -2,5 +2,5 @@ # Needed nightly features: # - cargo `Z-bindeps` to build and embed preload shared libraries as dependencies of fspy # - `windows_process_extensions_main_thread_handle` to get the main thread handle for Detours injection -channel = "nightly-2026-05-24" +channel = "nightly-2026-06-10" profile = "default" From 979cd19f05a1522cab9655057a613264996c6c82 Mon Sep 17 00:00:00 2001 From: MK Date: Wed, 10 Jun 2026 16:25:00 +0800 Subject: [PATCH 2/2] ci: allow clippy::unused_async_trait_impl from nightly-2026-06-10 The new nightly's clippy added unused_async_trait_impl, which fires in upstream rolldown crates without a `[lints]` table (rolldown_plugin_lazy_compilation). --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66d0940f93..bb694dd51e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -180,6 +180,7 @@ jobs: -A clippy::byte_char_slices \ -A clippy::manual_assert_eq \ -A clippy::needless_return_with_question_mark \ + -A clippy::unused_async_trait_impl \ -A clippy::useless_borrows_in_formatting # RUSTDOCFLAGS='-D warnings' cargo doc --no-deps --document-private-items