Skip to content

Commit

Permalink
Derive Eq for Full Equivalence Relations
Browse files Browse the repository at this point in the history
  • Loading branch information
voteblake authored and ctron committed May 27, 2024
1 parent eddaaed commit 75c79ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/purl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ENCODE_SET: &AsciiSet = &percent_encoding::CONTROLS
.add(b'|');

/// A Package URL.
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct PackageUrl<'a> {
/// The package URL type.
Expand Down

0 comments on commit 75c79ba

Please sign in to comment.