1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-07 11:13:17 +02:00
ripgrep/grep-matcher
Andrew Gallant 63b0f31a22 deps: update various dependencies
We also increase the MSRV to 1.32, the current stable release, which sets
the stage for migrating to Rust 2018.
2019-01-19 10:44:30 -05:00
..
src grep-matcher: add LineTerminator::is_suffix 2018-09-07 12:06:04 -04:00
tests libripgrep: initial commit introducing libripgrep 2018-08-20 07:10:19 -04:00
Cargo.toml deps: update various dependencies 2019-01-19 10:44:30 -05:00
LICENSE-MIT libripgrep: initial commit introducing libripgrep 2018-08-20 07:10:19 -04:00
README.md libripgrep: initial commit introducing libripgrep 2018-08-20 07:10:19 -04:00
UNLICENSE libripgrep: initial commit introducing libripgrep 2018-08-20 07:10:19 -04:00

grep-matcher

This crate provides a low level interface for describing regular expression matchers. The grep crate uses this interface in order to make the regex engine it uses pluggable.

Linux build status Windows build status

Dual-licensed under MIT or the UNLICENSE.

Documentation

https://docs.rs/grep-matcher

NOTE: You probably don't want to use this crate directly. Instead, you should prefer the facade defined in the grep crate.

Usage

Add this to your Cargo.toml:

[dependencies]
grep-matcher = "0.1"

and this to your crate root:

extern crate grep_matcher;