twinstar icon indicating copy to clipboard operation
twinstar copied to clipboard

Don't require the query string to be UTF-8

Open panicbit opened this issue 5 years ago • 1 comments

https://github.com/panicbit/northstar/blob/75a1cd1eb5e2720b247a802f2f8edcc67bf4a624/src/types/request.rs#L24-L33

panicbit avatar Nov 14 '20 04:11 panicbit

Notes: PercentDecode<'a> implements Into<Cow<'a, [u8]>> and Iterator<Item = u8>. The former would be preferred since it can save an allocation.

panicbit avatar Nov 16 '20 22:11 panicbit