Age | Commit message (Collapse) | Author |
|
- 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.
|
|
|
|
|