regexr 0.5.0

A high-performance regex engine built from scratch with JIT compilation and SIMD acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
//! Engine module - coordinates regex execution.
//!
//! Selects the optimal execution strategy based on pattern properties.

mod dfa_pool;
mod executor;
mod selector;

pub use executor::*;
pub use selector::*;