1c67d6573Sopenharmony_ci// We don't always use all of the method available to each regex engine because 2c67d6573Sopenharmony_ci// of conditional compilation and such. 3c67d6573Sopenharmony_ci#![allow(dead_code)] 4c67d6573Sopenharmony_ci 5c67d6573Sopenharmony_ci#[cfg(feature = "re-onig")] 6c67d6573Sopenharmony_cipub mod onig; 7c67d6573Sopenharmony_ci#[cfg(feature = "re-pcre1")] 8c67d6573Sopenharmony_cipub mod pcre1; 9c67d6573Sopenharmony_ci#[cfg(feature = "re-pcre2")] 10c67d6573Sopenharmony_cipub mod pcre2; 11c67d6573Sopenharmony_ci#[cfg(feature = "re-re2")] 12c67d6573Sopenharmony_cipub mod re2; 13c67d6573Sopenharmony_ci#[cfg(feature = "re-tcl")] 14c67d6573Sopenharmony_cipub mod tcl; 15