-
SummaryI am working on a Loco project, which is built on top of Axum, which in turn is built on Tower and tower-http. My application primarily deals with JSON-based HTTP requests and responses. I need a general-purpose HTTP client for making outbound API requests, and I’m considering whether to:
Given that Loco/Axum is already built on Tower, would it be better to stay within the Tower ecosystem by using Hyper + Tower middleware for better compatibility? Or would axum version0.8.1 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Honestly, just use whatever feels best. I would be surprised if you reused a lot of middlewares between the server and client. Also |
Beta Was this translation helpful? Give feedback.
Honestly, just use whatever feels best. I would be surprised if you reused a lot of middlewares between the server and client.
Also
reqwest
is built on top ofhyper
.