PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/crates/printer/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 31 lines | 31 code | 0 blank | 0 comment | 0 complexity | 894c59a1d26aee5eee0e53c7678a8f98 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "grep-printer"
  3. version = "0.1.5" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. An implementation of the grep crate's Sink trait that provides standard
  7. printing of search results, similar to grep itself.
  8. """
  9. documentation = "https://docs.rs/grep-printer"
  10. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
  11. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/printer"
  12. readme = "README.md"
  13. keywords = ["grep", "pattern", "print", "printer", "sink"]
  14. license = "Unlicense/MIT"
  15. [features]
  16. default = ["serde1"]
  17. serde1 = ["base64", "serde", "serde_derive", "serde_json"]
  18. [dependencies]
  19. base64 = { version = "0.12.1", optional = true }
  20. bstr = "0.2.0"
  21. grep-matcher = { version = "0.1.2", path = "../matcher" }
  22. grep-searcher = { version = "0.1.4", path = "../searcher" }
  23. termcolor = "1.0.4"
  24. serde = { version = "1.0.77", optional = true }
  25. serde_derive = { version = "1.0.77", optional = true }
  26. serde_json = { version = "1.0.27", optional = true }
  27. [dev-dependencies]
  28. grep-regex = { version = "0.1.3", path = "../regex" }