Skip to content

Commit 5e67cae

Browse files
rex4539cijothomas
andauthored
fix: fix feature = "cargo-clippy" deprecation (#1587)
Co-authored-by: Cijo Thomas <cijo.thomas@gmail.com>
1 parent eb1a09b commit 5e67cae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

opentelemetry-jaeger/src/exporter/thrift/agent.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#![allow(unused_imports)]
55
#![allow(unused_extern_crates)]
6-
#![cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments, clippy::type_complexity))]
6+
#![cfg_attr(clippy, allow(clippy::too_many_arguments, clippy::type_complexity))]
77
#![cfg_attr(rustfmt, rustfmt_skip)]
88

99
extern crate thrift;

opentelemetry-jaeger/src/exporter/thrift/jaeger.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#![allow(unused_imports)]
55
#![allow(unused_extern_crates)]
6-
#![cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments, clippy::type_complexity))]
6+
#![cfg_attr(clippy, allow(clippy::too_many_arguments, clippy::type_complexity))]
77
#![cfg_attr(rustfmt, rustfmt_skip)]
88

99
extern crate thrift;

opentelemetry-jaeger/src/exporter/thrift/zipkincore.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#![allow(unused_imports)]
55
#![allow(unused_extern_crates)]
6-
#![cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments, clippy::type_complexity))]
6+
#![cfg_attr(clippy, allow(clippy::too_many_arguments, clippy::type_complexity))]
77
#![cfg_attr(rustfmt, rustfmt_skip)]
88

99
extern crate thrift;

0 commit comments

Comments
 (0)