Skip to content

Commit d64e443

Browse files
committed
chore: Remove clippy feature flag
1 parent b9d332b commit d64e443

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

stacks-common/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ developer-mode = []
7676
slog_json = ["slog-json"]
7777
testing = ["canonical"]
7878
serde = []
79-
clippy = []
8079
bech32_std = []
8180
bech32_strict = []
8281

stacks-common/src/deps_common/bitcoin/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
//!
2727
2828
// 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
3131

3232
// Coding conventions
3333
#![deny(non_upper_case_globals)]

0 commit comments

Comments
 (0)