Skip to content

Commit

Permalink
chore: remove clippy::missing_debug_implementations (#10491)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg committed Aug 24, 2024
1 parent e52ca0e commit adf7fb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/rpc/rpc-layer/src/jwt_validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ use tracing::error;
/// Implements JWT validation logics and integrates
/// to an Http [`AuthLayer`][crate::AuthLayer]
/// by implementing the [`AuthValidator`] trait.
#[derive(Clone)]
#[allow(missing_debug_implementations)]
#[derive(Debug, Clone)]
pub struct JwtAuthValidator {
secret: JwtSecret,
}
Expand Down

0 comments on commit adf7fb2

Please sign in to comment.