Skip to content

Commit

Permalink
x509-cert: losen the lifetime requirement for AsyncBuilder (#1532)
Browse files Browse the repository at this point in the history
I'm not entirely sure why I introduced that lifetime in the original PR
(#1280).
  • Loading branch information
baloo authored Sep 27, 2024
1 parent 75f619d commit 49a9cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x509-cert/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ pub trait AsyncBuilder: Sized {
S: AsyncSigner<Signature>,
S: Keypair + DynSignatureAlgorithmIdentifier,
S::VerifyingKey: EncodePublicKey,
Signature: SignatureBitStringEncoding + 'static,
Signature: SignatureBitStringEncoding,
{
let blob = self.finalize(signer)?;

Expand All @@ -485,7 +485,7 @@ pub trait AsyncBuilder: Sized {
S: AsyncRandomizedSigner<Signature>,
S: Keypair + DynSignatureAlgorithmIdentifier,
S::VerifyingKey: EncodePublicKey,
Signature: SignatureBitStringEncoding + 'static,
Signature: SignatureBitStringEncoding,
{
let blob = self.finalize(signer)?;

Expand Down

0 comments on commit 49a9cb2

Please sign in to comment.