Age | Commit message (Collapse) | Author |
|
* update dependencies
- actix-web v2
- percent encoding v2.1
- rust 2018 edition
- remove rustfmt no longer supported rules
* ci: add feature build matrix
* fix actix unit tests
Co-authored-by: Mario Reder <mreder1289@gmail.com>
|
|
resolves #23
|
|
Update dependencies.
|
|
Co-Authored-By: agrinman <agrinman@users.noreply.github.com>
|
|
|
|
|
|
- Suppress deprecated warning from error-chain
- Fix clippy issues
- Update dependencies
- Update example to csv 1.0
|
|
When parsing a value, always just consume all the text, and ignore
special encoded of brackets.
(Hence non-strict mode only applies to keys)
|
|
|
|
Permits encoded brackets, and will generally tolerate parsing
errors where possible.
Permitting, for example, `a%5B[0%5D=1` to decode as `a: vec![1]`.
Default behaviour is strict.
|
|
|
|
- Only perform the percent decoding at the final step (fixes #10).
- Reduce allocations by borrowing as much as possible.
|
|
|
|
Fixes #7.
|
|
Clean up the code in places.
|
|
|
|
Improved documentation, simpified the API coverage, and replaced
panics with errors in most cases.
|
|
|
|
|