lib.rs (ripgrep-12.1.1) | : | lib.rs (ripgrep-13.0.0) | ||
---|---|---|---|---|
/*! | /*! | |||
An implementation of `grep-matcher`'s `Matcher` trait for Rust's regex engine. | An implementation of `grep-matcher`'s `Matcher` trait for Rust's regex engine. | |||
*/ | */ | |||
#![deny(missing_docs)] | #![deny(missing_docs)] | |||
extern crate aho_corasick; | pub use crate::error::{Error, ErrorKind}; | |||
extern crate bstr; | pub use crate::matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}; | |||
extern crate grep_matcher; | ||||
#[macro_use] | ||||
extern crate log; | ||||
extern crate regex; | ||||
extern crate regex_syntax; | ||||
extern crate thread_local; | ||||
pub use error::{Error, ErrorKind}; | ||||
pub use matcher::{RegexCaptures, RegexMatcher, RegexMatcherBuilder}; | ||||
mod ast; | mod ast; | |||
mod config; | mod config; | |||
mod crlf; | mod crlf; | |||
mod error; | mod error; | |||
mod literal; | mod literal; | |||
mod matcher; | mod matcher; | |||
mod multi; | mod multi; | |||
mod non_matching; | mod non_matching; | |||
mod strip; | mod strip; | |||
End of changes. 2 change blocks. | ||||
12 lines changed or deleted | 2 lines changed or added |