1 | #![allow ( |
2 | clippy::cast_lossless, |
3 | clippy::cast_possible_truncation, |
4 | clippy::cast_possible_wrap, |
5 | clippy::cast_precision_loss, |
6 | clippy::cast_sign_loss, |
7 | clippy::comparison_chain, |
8 | clippy::doc_markdown, |
9 | clippy::excessive_precision, |
10 | clippy::float_cmp, |
11 | clippy::if_not_else, |
12 | clippy::let_underscore_untyped, |
13 | clippy::module_name_repetitions, |
14 | clippy::needless_late_init, |
15 | clippy::shadow_unrelated, |
16 | clippy::similar_names, |
17 | clippy::single_match_else, |
18 | clippy::too_many_lines, |
19 | clippy::unreadable_literal, |
20 | clippy::unseparated_literal_suffix, |
21 | clippy::wildcard_imports |
22 | )] |
23 | |
24 | extern crate alloc; |
25 | |
26 | #[path = "../src/lexical/mod.rs" ] |
27 | mod lexical; |
28 | |
29 | #[path = "lexical/algorithm.rs" ] |
30 | mod algorithm; |
31 | |
32 | #[path = "lexical/exponent.rs" ] |
33 | mod exponent; |
34 | |
35 | #[path = "lexical/float.rs" ] |
36 | mod float; |
37 | |
38 | #[path = "lexical/math.rs" ] |
39 | mod math; |
40 | |
41 | #[path = "lexical/num.rs" ] |
42 | mod num; |
43 | |
44 | #[path = "lexical/parse.rs" ] |
45 | mod parse; |
46 | |
47 | #[path = "lexical/rounding.rs" ] |
48 | mod rounding; |
49 | |