-
SummaryContextI'm trying to migrate my internal authentication lib to tower-http 0.5 (in order to support axum 0.7). IssueI have the following error while migrating a wrapper of
And here is the relevant part of
Note: I already tried to use Do you have any idea how should I upgrade this, so that it works with tower-http 0.5 and axum 0.7? tower-http version0.5.0 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
axum's |
Beta Was this translation helpful? Give feedback.
axum's
Body
type is notSync
, but you requireReqBody: Sync
. Do you actually need that bound?