From d560eb00fda571d7ba07c66ba3744454d072a810 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sun, 13 Apr 2025 12:54:33 +1000 Subject: [PATCH] chore(rust): remove resolved duplicated dependency exclusion (#8766) We no longer have multiple versions of `tauri-winrt-notification` in our dependency tree and can therefore remove this exclusion rule. To ensure that we don't forget to update these in the future, we now deny the `unnecessary-skip` lint that warns us when we have one of those entries. --- .github/workflows/_rust.yml | 2 +- rust/deny.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/_rust.yml b/.github/workflows/_rust.yml index be9d4c1c0..21fc766f3 100644 --- a/.github/workflows/_rust.yml +++ b/.github/workflows/_rust.yml @@ -71,7 +71,7 @@ jobs: - run: cargo clippy --all-targets --all-features ${{ steps.setup-rust.outputs.packages }} name: "cargo clippy" shell: bash - - run: cargo deny check --hide-inclusion-graph + - run: cargo deny check --hide-inclusion-graph --deny unnecessary-skip shell: bash test: diff --git a/rust/deny.toml b/rust/deny.toml index 0d0d2b1bf..402bca68d 100644 --- a/rust/deny.toml +++ b/rust/deny.toml @@ -264,7 +264,6 @@ skip = [ "regex-syntax", "syn", "sync_wrapper", - "tauri-winrt-notification", "thiserror", "thiserror-impl", "toml_edit",