File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ asan = []
71
71
rust.non_camel_case_types = " allow"
72
72
rust.non_upper_case_globals = " allow"
73
73
rust.unstable_name_collisions = " allow"
74
+ clippy.assigning_clones = " allow"
74
75
clippy.bool_assert_comparison = " allow"
75
76
clippy.box_default = " allow"
76
77
clippy.collapsible_if = " allow"
@@ -79,9 +80,10 @@ clippy.derivable_impls = "allow"
79
80
clippy.field_reassign_with_default = " allow"
80
81
clippy.get_first = " allow"
81
82
clippy.if_same_then_else = " allow"
83
+ clippy.incompatible_msrv = " allow"
82
84
clippy.len_without_is_empty = " allow"
83
- clippy.manual_range_contains = " allow"
84
85
clippy.manual_is_ascii_check = " allow"
86
+ clippy.manual_range_contains = " allow"
85
87
clippy.mut_from_ref = " allow"
86
88
clippy.needless_return = " allow"
87
89
clippy.new_without_default = " allow"
Original file line number Diff line number Diff line change 2
2
3
3
// Delete this once we require Rust 1.74.
4
4
#![ allow( unstable_name_collisions) ]
5
+ #![ allow( clippy:: incompatible_msrv) ]
5
6
#![ allow( clippy:: uninlined_format_args) ]
6
7
7
8
use std:: ffi:: { CString , OsStr } ;
Original file line number Diff line number Diff line change 1
- // Delete this once we require Rust 1.74.
2
1
#![ cfg_attr( feature = "benchmark" , feature( test) ) ]
3
2
#![ allow( non_camel_case_types) ]
4
3
#![ allow( non_upper_case_globals) ]
5
4
#![ allow( unstable_name_collisions) ]
5
+ #![ allow( clippy:: assigning_clones) ]
6
6
#![ allow( clippy:: bool_assert_comparison) ]
7
7
#![ allow( clippy:: box_default) ]
8
8
#![ allow( clippy:: collapsible_if) ]
11
11
#![ allow( clippy:: field_reassign_with_default) ]
12
12
#![ allow( clippy:: get_first) ]
13
13
#![ allow( clippy:: if_same_then_else) ]
14
+ #![ allow( clippy:: incompatible_msrv) ]
14
15
#![ allow( clippy:: len_without_is_empty) ]
15
16
#![ allow( clippy:: manual_is_ascii_check) ]
16
17
#![ allow( clippy:: mut_from_ref) ]
You can’t perform that action at this time.
0 commit comments