PageRenderTime 30ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/crates/matcher/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 24 lines | 21 code | 3 blank | 0 comment | 1 complexity | c6f37ee1ac499276624e48b4534620f9 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "grep-matcher"
  3. version = "0.1.4" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. A trait for regular expressions, with a focus on line oriented search.
  7. """
  8. documentation = "https://docs.rs/grep-matcher"
  9. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
  10. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/matcher"
  11. readme = "README.md"
  12. keywords = ["regex", "pattern", "trait"]
  13. license = "Unlicense/MIT"
  14. autotests = false
  15. [dependencies]
  16. memchr = "2.1"
  17. [dev-dependencies]
  18. regex = "1.1"
  19. [[test]]
  20. name = "integration"
  21. path = "tests/tests.rs"