1#![cfg_attr(feature = "bench", feature(test))]
2#![cfg_attr(feature = "no_std", no_std)]
3
4extern crate alloc;
5
6pub mod compile;
7pub mod ctype;
8pub mod immut_vec;
9pub mod matcher;
10pub mod tree;
11
12pub use compile::PosixRegexBuilder;
13pub use matcher::PosixRegex;