regexr 0.1.2

A high-performance regex engine built from scratch with JIT compilation and SIMD acceleration
Documentation
1
2
3
4
5
6
7
//! PikeVM interpreter module.
//!
//! Contains the pure Rust PikeVM implementation for NFA simulation.

mod vm;

pub use vm::PikeVm;