Skip to content

Commit

Permalink
async-signature: re-add 'static bound (#1392)
Browse files Browse the repository at this point in the history
Accidentally removed in #1375
  • Loading branch information
tarcieri authored Nov 12, 2023
1 parent 5b2f9cb commit 2b4f648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async-signature/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use async_trait::async_trait;
///
/// This trait is an async equivalent of the [`signature::Signer`] trait.
#[async_trait(?Send)]
pub trait AsyncSigner<S> {
pub trait AsyncSigner<S: 'static> {
/// Attempt to sign the given message, returning a digital signature on
/// success, or an error if something went wrong.
///
Expand Down

0 comments on commit 2b4f648

Please sign in to comment.