Skip to content

Commit a4129f0

Browse files
committed
chore: update warnings to use deny instead
1 parent bcf1444 commit a4129f0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

src/lib.rs

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
#![doc = include_str!("../README.md")]
22

3-
#![warn(
3+
#![deny(
44
ambiguous_negative_literals,
5-
bad_style,
65
clippy::pedantic,
76
missing_debug_implementations,
87
missing_docs,
9-
non_shorthand_field_patterns,
10-
overflowing_literals,
11-
path_statements,
128
trivial_casts,
139
trivial_numeric_casts,
1410
unused_extern_crates,
1511
unused_import_braces,
1612
unused_qualifications,
17-
unused_results
13+
unused_results,
14+
unsafe_code,
15+
warnings
1816
)]
19-
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)