signatures: Remove PartialEq impl for Ed25519Verifier

This commit is contained in:
Jonas Platte 2022-05-23 18:30:32 +02:00
parent b4f69549f8
commit 6805f67d75
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# [unreleased] # [unreleased]
Breaking changes:
* Remove pointless `PartialEq` implementation for `Ed25519Verifier`
# 0.11.0 # 0.11.0
Breaking changes: Breaking changes:

View File

@ -24,7 +24,7 @@ pub trait Verifier {
} }
/// A verifier for Ed25519 digital signatures. /// A verifier for Ed25519 digital signatures.
#[derive(Debug, Default, PartialEq)] #[derive(Debug, Default)]
pub struct Ed25519Verifier; pub struct Ed25519Verifier;
impl Verifier for Ed25519Verifier { impl Verifier for Ed25519Verifier {