Skip to content

Commit

Permalink
fixup! fix(coap): Apply clippy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Oct 30, 2024
1 parent febaef4 commit a5e234b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib/coapcore/src/seccontext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ impl<Crypto: lakers::Crypto> Default for SecContextState<Crypto> {
}

#[derive(Debug)]
#[expect(clippy::large-enum-variant, reason = "requiring more memory during connection setup is expected, but the complexity of an inhmogenous pool is currently impractical")]
#[expect(
clippy::large_enum_variant,
reason = "requiring more memory during connection setup is expected, but the complexity of an inhmogenous pool is currently impractical"
)]
enum SecContextStage<Crypto: lakers::Crypto> {
Empty,

Expand Down

0 comments on commit a5e234b

Please sign in to comment.