Skip to content

Commit e550ba3

Browse files
author
Paul Kramer
authored
fix(deps): update axum monorepo (#588)
Removed `async_trait` which blocked the renovate PR.
1 parent 230a4a4 commit e550ba3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ proto_full = ["zitadel-action-v1","zitadel-admin-v1","zitadel-app-v1","zitadel-a
146146
[dependencies]
147147
actix-web = { version = "4.5.1", optional = true }
148148
async-trait = { version = "0.1.80", optional = true }
149-
axum = { version = "0.7.5", optional = true, features = ["macros"] }
150-
axum-extra = { version = "0.9.3", optional = true, features = ["typed-header"] }
149+
axum = { version = "0.8.0", optional = true, features = ["macros"] }
150+
axum-extra = { version = "0.10.0", optional = true, features = ["typed-header"] }
151151
base64-compat = { version = "1", optional = true }
152152
custom_error = "1.9.2"
153153
document-features = { version = "0.2.8", optional = true }

src/axum/introspection/user.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ use std::fmt::Debug;
44
use crate::axum::introspection::IntrospectionState;
55
use axum::http::StatusCode;
66
use axum::{
7-
async_trait,
87
extract::{FromRef, FromRequestParts},
98
http::request::Parts,
109
response::IntoResponse,
@@ -111,7 +110,6 @@ pub struct IntrospectedUser {
111110
pub metadata: Option<HashMap<String, String>>,
112111
}
113112

114-
#[async_trait]
115113
impl<S> FromRequestParts<S> for IntrospectedUser
116114
where
117115
IntrospectionState: FromRef<S>,

0 commit comments

Comments
 (0)