|
1 | 1 | //! A simple OGG page reader |
2 | 2 |
|
3 | | -#![allow( |
4 | | - unknown_lints, |
5 | | - clippy::too_many_lines, |
6 | | - clippy::cast_precision_loss, |
7 | | - clippy::cast_sign_loss, |
8 | | - clippy::cast_possible_wrap, |
9 | | - clippy::cast_possible_truncation, |
10 | | - clippy::module_name_repetitions, |
11 | | - clippy::must_use_candidate, |
12 | | - clippy::doc_markdown, |
13 | | - let_underscore_drop, |
14 | | - clippy::match_wildcard_for_single_variants, |
15 | | - clippy::semicolon_if_nothing_returned, |
16 | | - clippy::new_without_default, |
17 | | - clippy::from_over_into, |
18 | | - clippy::upper_case_acronyms, |
19 | | - clippy::single_match_else, |
20 | | - clippy::similar_names, |
21 | | - clippy::tabs_in_doc_comments, |
22 | | - clippy::len_without_is_empty, |
23 | | - clippy::needless_late_init, |
24 | | - clippy::type_complexity, |
25 | | - clippy::type_repetition_in_bounds, |
26 | | - unused_qualifications, |
27 | | - clippy::return_self_not_must_use, |
28 | | - clippy::bool_to_int_with_if, |
29 | | - clippy::uninlined_format_args, /* This should be changed for any normal "{}", but I'm not a fan of it for any debug or width specific formatting */ |
30 | | - clippy::manual_let_else, |
31 | | - clippy::struct_excessive_bools, |
32 | | - clippy::match_bool |
33 | | -)] |
34 | | - |
35 | 3 | mod crc; |
36 | 4 | mod error; |
37 | 5 | mod header; |
|
0 commit comments