Skip to content

Commit

Permalink
Fix CI by temporarily allowing lint violated by darling crate (#51)
Browse files Browse the repository at this point in the history
The darling crate has an open issue (see
TedDriggs/darling#293 ) which, until fixed,
raises a new clippy lint (as of Rust 1.79).

So we temporarily allow it so that we unblock foundations CI.
  • Loading branch information
nmldiegues authored Jun 25, 2024
1 parent 341befe commit 71f3ab0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions foundations-macros/src/info_metric/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// See: https://github.com/cloudflare/foundations/issues/50
#![allow(clippy::manual_unwrap_or_default)]

use crate::common::Result;
use darling::FromMeta;
use proc_macro::TokenStream;
Expand Down

0 comments on commit 71f3ab0

Please sign in to comment.