/
githubmirror
/
ripgrep
Обзор
Документация
Войти
/
githubmirror
/
ripgrep
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
crates/pcre2/src/lib.rs
16 строк
308 B
Andrew Gallant
pcre2: small polishing
10 окт 2023, 03:29
10 окт 2023, 03:29
798f898
Код
Авторство
О чём код?
/*! An implementation of `grep-matcher`'s `Matcher` trait for [PCRE2](https://www.pcre.org/). */ #![deny(missing_docs)] pub use pcre2::{is_jit_available, version}; pub use crate::{ error::{Error, ErrorKind}, matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}, }; mod error; mod matcher;