picomatch_rs/lib.rs
1pub mod compile;
2pub mod constants;
3pub mod matcher;
4pub mod scan;
5pub mod utils;
6
7pub use compile::{
8 make_re, parse, regex_output_for_engine, CompileOptions, ParseState, ParseToken,
9 RegexDescriptor,
10};
11pub use matcher::{compile_matcher, is_match, is_match_any, MatchError, Matcher};
12pub use scan::{scan, ScanOptions, ScanState, ScanToken};