summaryrefslogtreecommitdiff
path: root/axum-extra/src/extract/cookie/signed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'axum-extra/src/extract/cookie/signed.rs')
-rw-r--r--axum-extra/src/extract/cookie/signed.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/axum-extra/src/extract/cookie/signed.rs b/axum-extra/src/extract/cookie/signed.rs
index b65df79f..87ba5444 100644
--- a/axum-extra/src/extract/cookie/signed.rs
+++ b/axum-extra/src/extract/cookie/signed.rs
@@ -1,6 +1,5 @@
use super::{cookies_from_request, set_cookies};
use axum::{
- async_trait,
extract::{FromRef, FromRequestParts},
response::{IntoResponse, IntoResponseParts, Response, ResponseParts},
};
@@ -139,7 +138,6 @@ impl<K> fmt::Debug for SignedCookieJar<K> {
}
}
-#[async_trait]
impl<S, K> FromRequestParts<S> for SignedCookieJar<K>
where
S: Send + Sync,