We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf1444 commit a4129f0Copy full SHA for a4129f0
src/lib.rs
@@ -1,19 +1,16 @@
1
#![doc = include_str!("../README.md")]
2
3
-#![warn(
+#![deny(
4
ambiguous_negative_literals,
5
- bad_style,
6
clippy::pedantic,
7
missing_debug_implementations,
8
missing_docs,
9
- non_shorthand_field_patterns,
10
- overflowing_literals,
11
- path_statements,
12
trivial_casts,
13
trivial_numeric_casts,
14
unused_extern_crates,
15
unused_import_braces,
16
unused_qualifications,
17
- unused_results
+ unused_results,
+ unsafe_code,
+ warnings
18
)]
19
-#![deny(unsafe_code)]
0 commit comments