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;