diff options
author | Atrox <hello@atrox.dev> | 2025-03-04 19:18:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-04 12:18:47 -0600 |
commit | d8427b2acde65c983b5c9af95ce011598b114071 (patch) | |
tree | 0b288e2b3f77aaa68ae7c78705effc35b72eb221 /src | |
parent | 4dd54a17c4a1b70d2cbf9891c2122994fcec71af (diff) |
update axum to v0.8 (#118)
* update axum to v0.8
* update rust-version to 1.75
* remove async_trait
* Revert msrv change
---------
Co-authored-by: Sam Scott <sam.scott89@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/axum.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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, |