/
githubmirror
/
ripgrep
Обзор
Документация
Войти
/
githubmirror
/
ripgrep
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
crates/regex/src/lib.rs
18 строк
323 B
Andrew Gallant
cli: error when searching for NUL
25 ноя 2023, 23:03
25 ноя 2023, 23:03
9ed7565
Код
Авторство
О чём код?
/*! An implementation of `grep-matcher`'s `Matcher` trait for Rust's regex engine. */ #![deny(missing_docs)] pub use crate::{ error::{Error, ErrorKind}, matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}, }; mod ast; mod ban; mod config; mod error; mod literal; mod matcher; mod non_matching; mod strip;