Skip to content

Commit

Permalink
Fix clippy lints (for real this time)
Browse files Browse the repository at this point in the history
  • Loading branch information
CeleritasCelery committed Apr 30, 2024
1 parent dc3c59b commit 45dc497
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
strategy:
fail-fast: false
matrix:
# Get early warning of new lints which are regularly introduced in beta channels.
toolchain: [stable, beta]
# Using beta lints are too flaky
toolchain: [stable]
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
allowed-duplicate-crates = ["syn"]
allowed-duplicate-crates = ["syn", "bitflags"]
2 changes: 0 additions & 2 deletions crates/rune-macros/defun.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![allow(clippy::manual_unwrap_or_default)]
// Issue with darling ^
use darling::FromMeta;
use proc_macro2::TokenStream;
use quote::{format_ident, quote};
Expand Down

0 comments on commit 45dc497

Please sign in to comment.