regex 1.0.0

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
15
16
pub use self::imp::*;

#[cfg(all(
    feature = "unstable",
    regex_runtime_teddy_ssse3,
    any(target_arch = "x86", target_arch = "x86_64"),
))]
mod imp;

#[cfg(not(all(
    feature = "unstable",
    regex_runtime_teddy_ssse3,
    any(target_arch = "x86", target_arch = "x86_64"),
)))]
#[path = "fallback.rs"]
mod imp;