1//! Engine module - coordinates regex execution. 2//! 3//! Selects the optimal execution strategy based on pattern properties. 4 5mod executor; 6mod selector; 7 8pub use executor::*; 9pub use selector::*;