Skip to content

Commit

Permalink
Fix lint decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKotowick committed Jul 1, 2024
1 parent d56bdcb commit abe60d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl Expected for Crv {
// would need to "sniff" for correct (Kty, Alg, Crv) triple
#[derive(Clone, Debug, Eq, PartialEq, Serialize)]
#[serde(untagged)]
#[deny(clippy::large_enum_variant)]
#[allow(clippy::large_enum_variant)]
pub enum PublicKey {
P256Key(P256PublicKey),
EcdhEsHkdf256Key(EcdhEsHkdf256PublicKey),
Expand Down

0 comments on commit abe60d5

Please sign in to comment.