@@ -81,6 +81,7 @@ undocumented_unsafe_blocks = "warn"
81
81
# Suppress buggy or noisy clippy lints
82
82
bool_assert_comparison = { level = " allow" , priority = 1 }
83
83
borrow_as_ptr = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
84
+ cast_lossless = { level = " allow" , priority = 1 } # https://godbolt.org/z/Pv6vbGG6E
84
85
declare_interior_mutable_const = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
85
86
doc_markdown = { level = " allow" , priority = 1 }
86
87
float_cmp = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
@@ -90,6 +91,7 @@ manual_assert = { level = "allow", priority = 1 }
90
91
manual_range_contains = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395
91
92
missing_errors_doc = { level = " allow" , priority = 1 }
92
93
module_name_repetitions = { level = " allow" , priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+module_name_repetitions
94
+ naive_bytecount = { level = " allow" , priority = 1 }
93
95
nonminimal_bool = { level = " allow" , priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool
94
96
range_plus_one = { level = " allow" , priority = 1 } # buggy: https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+range_plus_one
95
97
similar_names = { level = " allow" , priority = 1 }
@@ -100,6 +102,7 @@ struct_field_names = { level = "allow", priority = 1 }
100
102
too_many_arguments = { level = " allow" , priority = 1 }
101
103
too_many_lines = { level = " allow" , priority = 1 }
102
104
type_complexity = { level = " allow" , priority = 1 }
105
+ unreadable_literal = { level = " allow" , priority = 1 }
103
106
104
107
[profile .release ]
105
108
codegen-units = 1
0 commit comments