From 2b4f64886fd3d5ceaffcde8c3bed3ff632472a66 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 12 Nov 2023 08:49:20 -0700 Subject: [PATCH] async-signature: re-add 'static bound (#1392) Accidentally removed in #1375 --- async-signature/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-signature/src/lib.rs b/async-signature/src/lib.rs index 736bcdf4..fde8ca24 100644 --- a/async-signature/src/lib.rs +++ b/async-signature/src/lib.rs @@ -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 { +pub trait AsyncSigner { /// Attempt to sign the given message, returning a digital signature on /// success, or an error if something went wrong. ///