Skip to content

Commit fd2fc49

Browse files
committed
fix: fix feature = "cargo-clippy" deprecation
1 parent ef47010 commit fd2fc49

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)