1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-14 22:15:13 +02:00
Files
ripgrep/crates/regex/src/lib.rs

17 lines
326 B
Rust
Raw Normal View History

/*!
An implementation of `grep-matcher`'s `Matcher` trait for Rust's regex engine.
*/
#![deny(missing_docs)]
pub use crate::error::{Error, ErrorKind};
pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder};
mod ast;
mod config;
mod error;
mod literal;
mod matcher;
mod non_matching;
mod strip;
mod word;