Skip to content

Commit

Permalink
Remove redundant cargo-clippy feature
Browse files Browse the repository at this point in the history
  • Loading branch information
jbesraa committed Oct 8, 2024
1 parent aaac7ff commit ad04857
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion roles/jd-client/src/lib/upstream_sv2/upstream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl Upstream {
/// `UpstreamConnection` with a channel to send and receive messages from the SV2 Upstream
/// role and uses channels provided in the function arguments to send and receive messages
/// from the `Downstream`.
#[cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments))]
#[allow(clippy::too_many_arguments)]
pub async fn new(
address: SocketAddr,
authority_public_key: Secp256k1PublicKey,
Expand Down
2 changes: 1 addition & 1 deletion roles/translator/src/lib/upstream_sv2/upstream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl Upstream {
/// `UpstreamConnection` with a channel to send and receive messages from the SV2 Upstream
/// role and uses channels provided in the function arguments to send and receive messages
/// from the `Downstream`.
#[cfg_attr(feature = "cargo-clippy", allow(clippy::too_many_arguments))]
#[allow(clippy::too_many_arguments)]
pub async fn new(
address: SocketAddr,
authority_public_key: Secp256k1PublicKey,
Expand Down

0 comments on commit ad04857

Please sign in to comment.