PageRenderTime 30ms CodeModel.GetById 7ms RepoModel.GetById 0ms app.codeStats 0ms

/crates/printer/README.md

https://github.com/BurntSushi/ripgrep
Markdown | 35 lines | 24 code | 11 blank | 0 comment | 0 complexity | f072d4f9db905f16c634414159177200 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. grep-printer
  2. ------------
  3. Print results from line oriented searching in a human readable, aggregate or
  4. JSON Lines format.
  5. [![Linux build status](https://api.travis-ci.org/BurntSushi/ripgrep.svg)](https://travis-ci.org/BurntSushi/ripgrep)
  6. [![Windows build status](https://ci.appveyor.com/api/projects/status/github/BurntSushi/ripgrep?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep)
  7. [![](https://img.shields.io/crates/v/grep-printer.svg)](https://crates.io/crates/grep-printer)
  8. Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
  9. ### Documentation
  10. [https://docs.rs/grep-printer](https://docs.rs/grep-printer)
  11. **NOTE:** You probably don't want to use this crate directly. Instead, you
  12. should prefer the facade defined in the
  13. [`grep`](https://docs.rs/grep)
  14. crate.
  15. ### Usage
  16. Add this to your `Cargo.toml`:
  17. ```toml
  18. [dependencies]
  19. grep-printer = "0.1"
  20. ```
  21. and this to your crate root:
  22. ```rust
  23. extern crate grep_printer;
  24. ```