queryst 0.1.4

Rust query string parser with nesting support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(phase)]

extern crate "rustc-serialize" as serialize;

#[phase(plugin)]
extern crate regex_macros;
extern crate regex;

extern crate collections;
extern crate url;

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

mod merge;
mod mutable_json;
mod helpers;
mod parser;