Add a couple extra Sync bounds

Not necessary right now, but required for axum 0.8.
This commit is contained in:
Jonas Platte 2025-07-26 19:32:45 +02:00
parent 40da74f28c
commit a3da77ce2c
No known key found for this signature in database
GPG key ID: 7D261D771D915378
2 changed files with 4 additions and 2 deletions

View file

@ -402,6 +402,7 @@ async fn ar_from_request_inner(
impl<T, S> FromRequest<S> for Ar<T>
where
T: IncomingRequest,
S: Sync,
{
type Rejection = Error;