rusty_regex/
lib.rs

1/// To access internal modules for visualization or debugging, use the `expose-internals` feature.
2
3pub mod matcher;
4pub mod regex_set;
5pub mod error;
6pub mod ast;
7pub mod parser;
8pub mod nfa;
9pub mod dfa;
10
11
12pub use matcher::Regex;
13pub use error::RegexError;