diff options
author | Sam Scott <sam@osohq.com> | 2025-03-04 15:26:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-04 15:26:36 -0600 |
commit | 8e36f91a3d897dc251bd167b9ada7b7f0f67ed8f (patch) | |
tree | abe9d8c54b3729164cd8d5baca60ab169ddadf3b /src | |
parent | d8427b2acde65c983b5c9af95ce011598b114071 (diff) |
Update CI config (#124)
* Fix axum test
* Add comments explaining CI strategy
* Bump deps and increase MSRV to 1.63
* Pin `csv` to an older version for MSRV
* Keep serde_with as 2.0 for MSRV too
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 42bc0a6..3b603f3 100644 --- a/src/axum.rs +++ b/src/axum.rs @@ -148,7 +148,6 @@ impl<T: std::fmt::Debug> std::fmt::Debug for OptionalQsQuery<T> { } } -#[axum::async_trait] impl<T, S> FromRequestParts<S> for OptionalQsQuery<T> where T: serde::de::DeserializeOwned, |