Skip to content

Commit

Permalink
Remove a pair of derives that are unused (#10669)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored Mar 30, 2024
1 parent f82c096 commit 74ed3a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rust/cryptography-x509-verification/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use crate::types::DNSName;
use crate::types::{DNSConstraint, IPAddress, IPConstraint};
use crate::ApplyNameConstraintStatus::{Applied, Skipped};

#[derive(Debug, PartialEq, Eq)]
#[derive(Debug)]
pub enum ValidationError {
CandidatesExhausted(Box<ValidationError>),
Malformed(asn1::ParseError),
Expand Down
2 changes: 1 addition & 1 deletion src/rust/cryptography-x509/src/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::common;
use crate::crl;
use crate::name;

#[derive(Debug, PartialEq, Eq)]
#[derive(Debug)]
pub struct DuplicateExtensionsError(pub asn1::ObjectIdentifier);

pub type RawExtensions<'a> = common::Asn1ReadableOrWritable<
Expand Down

0 comments on commit 74ed3a4

Please sign in to comment.