rusty_regex/
lib.rs

1pub mod ast;
2pub mod parser;
3pub mod nfa;
4pub mod dfa;
5pub mod matcher;
6pub mod regex_set;
7pub mod error;
8
9pub use matcher::Regex;
10pub use error::RegexError;