grep_regex/lib.rs
1/*!
2An implementation of `grep-matcher`'s `Matcher` trait for Rust's regex engine.
3*/
4#![deny(missing_docs)]
5
6pub use crate::{
7 error::{Error, ErrorKind},
8 matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder},
9};
10
11mod ast;
12mod ban;
13mod config;
14mod error;
15mod literal;
16mod matcher;
17mod non_matching;
18mod strip;