File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 5
5
//! with the Parsec service.
6
6
7
7
#![ deny(
8
- nonstandard_style,
9
8
dead_code,
10
9
improper_ctypes,
11
- non_shorthand_field_patterns,
10
+ missing_debug_implementations,
11
+ missing_docs,
12
12
no_mangle_generic_items,
13
+ non_shorthand_field_patterns,
14
+ nonstandard_style,
13
15
overflowing_literals,
14
16
path_statements,
15
17
patterns_in_fns_without_body,
16
18
private_in_public,
19
+ trivial_casts,
20
+ trivial_numeric_casts,
17
21
unconditional_recursion,
18
22
unused,
19
23
unused_allocation,
20
24
unused_comparisons,
21
- unused_parens,
22
- while_true,
23
- missing_debug_implementations,
24
- missing_docs,
25
- trivial_casts,
26
- trivial_numeric_casts,
27
25
unused_extern_crates,
28
26
unused_import_braces,
27
+ unused_parens,
29
28
unused_qualifications,
30
- unused_results
29
+ unused_results,
30
+ while_true
31
31
) ]
32
32
// This one is hard to avoid.
33
33
#![ allow( clippy:: multiple_crate_versions) ]
You can’t perform that action at this time.
0 commit comments