regex-decode 0.1.0

Decodes captures of a regular expression into Rust data types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![recursion_limit = "1024"]

#[macro_use]
extern crate error_chain;
extern crate regex;
extern crate rustc_serialize;

mod decoder;
pub use decoder::decode;

pub mod errors {
    // Create the Error, ErrorKind, ResultExt, and Result types
    error_chain! { }
}