PageRenderTime 43ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/crates/searcher/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 33 lines | 28 code | 4 blank | 1 comment | 0 complexity | 8967e8dd8249f40edbcf8bbe4b1f9c31 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "grep-searcher"
  3. version = "0.1.7" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. Fast line oriented regex searching as a library.
  7. """
  8. documentation = "https://docs.rs/grep-searcher"
  9. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
  10. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
  11. readme = "README.md"
  12. keywords = ["regex", "grep", "egrep", "search", "pattern"]
  13. license = "Unlicense/MIT"
  14. [dependencies]
  15. bstr = { version = "0.2.0", default-features = false, features = ["std"] }
  16. bytecount = "0.6"
  17. encoding_rs = "0.8.14"
  18. encoding_rs_io = "0.1.6"
  19. grep-matcher = { version = "0.1.2", path = "../matcher" }
  20. log = "0.4.5"
  21. memmap = "0.7"
  22. [dev-dependencies]
  23. grep-regex = { version = "0.1.3", path = "../regex" }
  24. regex = "1.1"
  25. [features]
  26. default = ["bytecount/runtime-dispatch-simd"]
  27. simd-accel = ["encoding_rs/simd-accel"]
  28. # This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
  29. avx-accel = []