queryst 3.0.0

Rust query string parser with nesting support, forked to update Serde
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate serde;
extern crate serde_json;

#[cfg(feature = "regex1")]
extern crate regex;
extern crate percent_encoding;

#[cfg(feature = "regex1")]
#[macro_use]
extern crate lazy_static;

pub use crate::parser::{parse, ParseResult, ParseError, ParseErrorKind};

mod merge;
mod helpers;
mod parser;