PageRenderTime 27ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/crates/grep/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 32 lines | 27 code | 4 blank | 1 comment | 0 complexity | 32a2a08f09e1133a597b2f3f07f298a6 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "grep"
  3. version = "0.2.6" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. Fast line oriented regex searching as a library.
  7. """
  8. documentation = "http://burntsushi.net/rustdoc/grep/"
  9. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
  10. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
  11. readme = "README.md"
  12. keywords = ["regex", "grep", "egrep", "search", "pattern"]
  13. license = "Unlicense/MIT"
  14. [dependencies]
  15. grep-cli = { version = "0.1.4", path = "../cli" }
  16. grep-matcher = { version = "0.1.4", path = "../matcher" }
  17. grep-pcre2 = { version = "0.1.4", path = "../pcre2", optional = true }
  18. grep-printer = { version = "0.1.5", path = "../printer" }
  19. grep-regex = { version = "0.1.8", path = "../regex" }
  20. grep-searcher = { version = "0.1.7", path = "../searcher" }
  21. [dev-dependencies]
  22. termcolor = "1.0.4"
  23. walkdir = "2.2.7"
  24. [features]
  25. simd-accel = ["grep-searcher/simd-accel"]
  26. pcre2 = ["grep-pcre2"]
  27. # This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
  28. avx-accel = []