regex-automata 0.1.3

Automata construction and matching using regular expressions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(dead_code)]

#[macro_use]
extern crate lazy_static;
extern crate regex;
extern crate regex_automata;
extern crate serde;
extern crate serde_bytes;
#[macro_use]
extern crate serde_derive;
extern crate toml;

mod collection;
mod regression;
mod suite;
mod unescape;