summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/axum.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1b65e53..461dfee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,7 +21,7 @@ serde = "1.0"
thiserror = "1.0"
tracing = { version = "0.1", optional = true }
warp-framework = { package = "warp", version = "0.3", default-features = false, optional = true }
-axum-framework = { package = "axum", version = "0.7", default-features = false, optional = true }
+axum-framework = { package = "axum", version = "0.8", default-features = false, optional = true }
[dev-dependencies]
chrono = { version = "0.4", features = ["serde"] }
diff --git a/src/axum.rs b/src/axum.rs
index e9a3c17..42bc0a6 100644
--- a/src/axum.rs
+++ b/src/axum.rs
@@ -68,7 +68,6 @@ impl<T: std::fmt::Debug> std::fmt::Debug for QsQuery<T> {
}
}
-#[axum::async_trait]
impl<T, S> FromRequestParts<S> for QsQuery<T>
where
T: serde::de::DeserializeOwned,