More form handling power in Axum? #295
-
Are there some third party libraries I can use for form handling in Axum? The current form handling example seems to be quite basic and I'm looking for a lot more form handling power. For instance, Rocket seems to have powerful form handling capabilities. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Can you elaborate on what features you're looking for? In general we try not to build everything into axum directly but rather make it easy to provide integrations that work with other crates. That way you get to pick/build the implementation that is right for you and we avoid creating silos of functionality that is only compatible with one framework. |
Beta Was this translation helpful? Give feedback.
Can you elaborate on what features you're looking for?
In general we try not to build everything into axum directly but rather make it easy to provide integrations that work with other crates. That way you get to pick/build the implementation that is right for you and we avoid creating silos of functionality that is only compatible with one framework.