Skip to content

Commit

Permalink
Merge #457
Browse files Browse the repository at this point in the history
457: Fix clippy false positive r=jonasbb a=jonasbb

rust-lang/rust-clippy#8867

bors merge

Co-authored-by: Jonas Bushart <jonas@bushart.org>
  • Loading branch information
bors[bot] and jonasbb committed May 23, 2022
2 parents 337b66b + b75d11e commit 62cd3bb
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions serde_with/src/lib.rs
Expand Up @@ -27,10 +27,15 @@
#![doc(test(no_crate_inject))]
#![doc(html_root_url = "https://docs.rs/serde_with/1.13.0")]
#![cfg_attr(docsrs, feature(doc_cfg))]
// clippy is broken and shows wrong warnings
// clippy on stable does not know yet about the lint name
// https://github.com/rust-lang/rust-clippy/issues/8560
#![allow(unknown_lints, clippy::only_used_in_recursion)]
#![allow(
// clippy is broken and shows wrong warnings
// clippy on stable does not know yet about the lint name
unknown_lints,
// https://github.com/rust-lang/rust-clippy/issues/8560
clippy::only_used_in_recursion,
// https://github.com/rust-lang/rust-clippy/issues/8867
clippy::derive_partial_eq_without_eq
)]
#![no_std]

//! [![crates.io badge](https://img.shields.io/crates/v/serde_with.svg)](https://crates.io/crates/serde_with/)
Expand Down

0 comments on commit 62cd3bb

Please sign in to comment.