orca
orca copied to clipboard
Use url::form_urlencoded::Serializer to build forms
The previous method required manually specifying when fields needed to be urlencoded. This ended up in mistakes (e.g. passwords weren't urlencoded).
As a bonus, this new method avoids some intermediate copies and hashtable construction (and associated heap allocations), so it should be more performant.