summaryrefslogtreecommitdiff
path: root/axum-extra/src/extract/cookie/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'axum-extra/src/extract/cookie/mod.rs')
-rw-r--r--axum-extra/src/extract/cookie/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/axum-extra/src/extract/cookie/mod.rs b/axum-extra/src/extract/cookie/mod.rs
index efd2dcdf..50fa6031 100644
--- a/axum-extra/src/extract/cookie/mod.rs
+++ b/axum-extra/src/extract/cookie/mod.rs
@@ -3,7 +3,6 @@
//! See [`CookieJar`], [`SignedCookieJar`], and [`PrivateCookieJar`] for more details.
use axum::{
- async_trait,
extract::FromRequestParts,
response::{IntoResponse, IntoResponseParts, Response, ResponseParts},
};
@@ -90,7 +89,6 @@ pub struct CookieJar {
jar: cookie::CookieJar,
}
-#[async_trait]
impl<S> FromRequestParts<S> for CookieJar
where
S: Send + Sync,