Skip to content

Commit

Permalink
fix new clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cospectrum committed Sep 13, 2024
1 parent c153f57 commit 7ed13ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
#![deny(missing_docs)]
#![cfg_attr(test, feature(test))]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![allow(clippy::zero_prefixed_literal, clippy::needless_range_loop)]
#![allow(
clippy::too_long_first_doc_paragraph,
clippy::zero_prefixed_literal,
clippy::needless_range_loop
)]

#[cfg(test)]
extern crate test;
Expand Down

0 comments on commit 7ed13ef

Please sign in to comment.