An alternative query string parser based on serde for rust.
```toml
[dependencies] serde-querystring = "0.0.4" ```
rust
// In your main function
let x: MyStruct = serde_querystring::from_str("YOUR QUERY STRING");
To see what is supported and what is not, please read the docs.
Existing alternatives don't cover some cases, for example enums (having enums in sequences, usefull for filters in rest apis) is not a first class value in similar crates. This crate tries to cover more real world use cases and it uses a different strategy to parse the query string which gives it some freedom to decide how to parse depending on the resulting data structure. Note that it may not be fully compatible with some existing standards in some cases, but it tries to support the cases they defined.
This project is in Alpha stage as of now, so use it at your own risk.
Benchmarks provided may not be accurate and I'm not in any way qualified to write benchmarks. Feel free to open pull requests if you see a problem.
If you're looking for a more production ready alternative, consider looking at these crates:
serde_urlencoded
: a performant query parser which doesn't support subkeys (aka dicts)
serde_qs
a better alternative to this one which is more mature and is featureful enough for most cases
Tests only cover valid cases, so there can be some bugs here and there. If you face a bug [lease open an issue and let me know.
It uses a good amount of code ported or copied from serde_json
crate and some lines from form_urlencoded
crate for example to parse numbers or strings.
This project is licensed under either of
at your option.