regex 1.1.7

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
5
6
7
8
9
10
11
12
13
14
pub use self::imp::*;

#[cfg(all(
    regex_runtime_teddy_avx2,
    target_arch = "x86_64",
))]
mod imp;

#[cfg(not(all(
    regex_runtime_teddy_avx2,
    target_arch = "x86_64",
)))]
#[path = "fallback.rs"]
mod imp;