README.md (ripgrep-12.1.1) | : | README.md (ripgrep-13.0.0) | ||
---|---|---|---|---|
grep-searcher | grep-searcher | |||
------------- | ------------- | |||
A high level library for executing fast line oriented searches. This handles | A high level library for executing fast line oriented searches. This handles | |||
things like reporting contextual lines, counting lines, inverting a search, | things like reporting contextual lines, counting lines, inverting a search, | |||
detecting binary data, automatic UTF-16 transcoding and deciding whether or not | detecting binary data, automatic UTF-16 transcoding and deciding whether or not | |||
to use memory maps. | to use memory maps. | |||
[](https: | []( | |||
//travis-ci.org/BurntSushi/ripgrep) | https://github.com/BurntSushi/ripgrep/actions) | |||
[](https://ci.appveyor.com/project/BurntSushi/ripgrep) | ||||
[](https://crates.io/crate s/grep-searcher) | [](https://crates.io/crate s/grep-searcher) | |||
Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org). | Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/). | |||
### Documentation | ### Documentation | |||
[https://docs.rs/grep-searcher](https://docs.rs/grep-searcher) | [https://docs.rs/grep-searcher](https://docs.rs/grep-searcher) | |||
**NOTE:** You probably don't want to use this crate directly. Instead, you | **NOTE:** You probably don't want to use this crate directly. Instead, you | |||
should prefer the facade defined in the | should prefer the facade defined in the | |||
[`grep`](https://docs.rs/grep) | [`grep`](https://docs.rs/grep) | |||
crate. | crate. | |||
### Usage | ### Usage | |||
Add this to your `Cargo.toml`: | Add this to your `Cargo.toml`: | |||
```toml | ```toml | |||
[dependencies] | [dependencies] | |||
grep-searcher = "0.1" | grep-searcher = "0.1" | |||
``` | ``` | |||
and this to your crate root: | ||||
```rust | ||||
extern crate grep_searcher; | ||||
``` | ||||
End of changes. 3 change blocks. | ||||
5 lines changed or deleted | 3 lines changed or added |