Skip to content

Commit 9bcd23c

Browse files
rex4539Mange
authored andcommitted
Fix feature = "cargo-clippy" deprecation
1 parent 4b067af commit 9bcd23c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ impl IntoIterator for Metadata {
190190

191191
// Disable implicit_hasher; suggested code fix does not compile. I think this might be a false
192192
// positive, but I'm not sure.
193-
#[cfg_attr(feature = "cargo-clippy", allow(clippy::implicit_hasher))]
193+
#[allow(clippy::implicit_hasher)]
194194
impl From<Metadata> for HashMap<String, Value> {
195195
fn from(metadata: Metadata) -> Self {
196196
metadata.values

0 commit comments

Comments
 (0)