File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,6 @@ developer-mode = []
76
76
slog_json = [" slog-json" ]
77
77
testing = [" canonical" ]
78
78
serde = []
79
- clippy = []
80
79
bech32_std = []
81
80
bech32_strict = []
82
81
Original file line number Diff line number Diff line change 26
26
//!
27
27
28
28
// Clippy flags
29
- #![ cfg_attr ( feature = "clippy" , allow( needless_range_loop) ) ] // suggests making a big mess of array newtypes
30
- #![ cfg_attr ( feature = "clippy" , allow( extend_from_slice) ) ] // `extend_from_slice` only available since 1.6
29
+ #![ allow( clippy :: needless_range_loop) ] // suggests making a big mess of array newtypes
30
+ #![ allow( clippy :: extend_from_slice) ] // `extend_from_slice` only available since 1.6
31
31
32
32
// Coding conventions
33
33
#![ deny( non_upper_case_globals) ]
You can’t perform that action at this time.
0 commit comments