Skip to content

Commit

Permalink
Change a forbid to warn.
Browse files Browse the repository at this point in the history
Make it works on 1.63.0.
  • Loading branch information
TheVeryDarkness committed Aug 30, 2024
1 parent a9580b6 commit ee6f9a0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#![forbid(missing_docs)]
#![forbid(rust_2021_compatibility, rust_2018_idioms, future_incompatible)]
#![forbid(unused_imports, unused_qualifications, unused_results)]
#![warn(
unused_imports,
unused_qualifications,
unused_results,
unused_comparisons
)]
#![forbid(
clippy::correctness,
clippy::suspicious,
Expand Down

0 comments on commit ee6f9a0

Please sign in to comment.