PageRenderTime 26ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/crates/regex/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 22 lines | 22 code | 0 blank | 0 comment | 0 complexity | df7dab16398a10553b7bbc34629827f7 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "grep-regex"
  3. version = "0.1.8" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. Use Rust's regex library with the 'grep' crate.
  7. """
  8. documentation = "https://docs.rs/grep-regex"
  9. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
  10. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/regex"
  11. readme = "README.md"
  12. keywords = ["regex", "grep", "search", "pattern", "line"]
  13. license = "Unlicense/MIT"
  14. [dependencies]
  15. aho-corasick = "0.7.3"
  16. bstr = "0.2.10"
  17. grep-matcher = { version = "0.1.2", path = "../matcher" }
  18. log = "0.4.5"
  19. regex = "1.1"
  20. regex-syntax = "0.6.5"
  21. thread_local = "1"