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 url;

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

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

mod merge;
mod helpers;
mod parser;