From db9c76de339744aff7cbe58711d9a3a0a684dca3 Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 21 Feb 2024 09:34:50 +0100 Subject: [PATCH] CI: Fix nightly build ``` error: lint `suspicious_auto_trait_impls` has been removed: no longer needed, see #93367 for more information ``` --- .github/workflows/build_docs.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml index 8d981d1203e..870ced6f666 100644 --- a/.github/workflows/build_docs.yaml +++ b/.github/workflows/build_docs.yaml @@ -13,9 +13,8 @@ jobs: env: # Allow deprecated warning because we are using nightly and some things might be deprecated in nightly # for which the stable alternative is not yet available. - # Allow suspicious-auto-trait-impls to work around https://github.com/Diggsey/scoped-tls-hkt/issues/2 # RUSTFLAGS: -D warnings -W deprecated - RUSTDOCFLAGS: --html-in-header=/home/runner/work/slint/slint/docs/resources/slint-docs-highlight.html -D warnings -W deprecated -W suspicious-auto-trait-impls + RUSTDOCFLAGS: --html-in-header=/home/runner/work/slint/slint/docs/resources/slint-docs-highlight.html -D warnings -W deprecated SLINT_NO_QT: 1 CARGO_INCREMENTAL: false steps: