regex 1.0.1

An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.
Documentation
1
2
3
4
#[cfg(target_arch = "x86_64")]
pub mod avx2;
#[cfg(any(target_arch = "x86_64"))]
pub mod ssse3;