File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ workspace = true
33
33
[workspace .lints .rust ]
34
34
improper_ctypes = " warn"
35
35
improper_ctypes_definitions = " warn"
36
- missing_debug_implementations = " warn"
37
36
non_ascii_idents = " warn"
38
37
rust_2018_idioms = " warn"
39
38
single_use_lifetimes = " warn"
@@ -51,6 +50,7 @@ undocumented_unsafe_blocks = "warn"
51
50
# Suppress buggy or noisy clippy lints
52
51
bool_assert_comparison = { level = " allow" , priority = 1 }
53
52
borrow_as_ptr = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286
53
+ declare_interior_mutable_const = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
54
54
doc_markdown = { level = " allow" , priority = 1 }
55
55
float_cmp = { level = " allow" , priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7725
56
56
manual_assert = { level = " allow" , priority = 1 }
Original file line number Diff line number Diff line change 2
2
3
3
#![ allow(
4
4
dead_code,
5
- missing_debug_implementations,
6
5
unreachable_pub,
7
6
clippy:: items_after_statements,
8
7
clippy:: missing_safety_doc,
You can’t perform that action at this time.
0 commit comments