PageRenderTime 23ms CodeModel.GetById 6ms RepoModel.GetById 0ms app.codeStats 0ms

/crates/ignore/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 38 lines | 33 code | 5 blank | 0 comment | 1 complexity | e471100ac5a8b5480a3d351feb7f5a16 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "ignore"
  3. version = "0.4.15" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. A fast library for efficiently matching ignore files such as `.gitignore`
  7. against file paths.
  8. """
  9. documentation = "https://docs.rs/ignore"
  10. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
  11. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore"
  12. readme = "README.md"
  13. keywords = ["glob", "ignore", "gitignore", "pattern", "file"]
  14. license = "Unlicense/MIT"
  15. [lib]
  16. name = "ignore"
  17. bench = false
  18. [dependencies]
  19. crossbeam-utils = "0.7.0"
  20. globset = { version = "0.4.5", path = "../globset" }
  21. lazy_static = "1.1"
  22. log = "0.4.5"
  23. memchr = "2.1"
  24. regex = "1.1"
  25. same-file = "1.0.4"
  26. thread_local = "1"
  27. walkdir = "2.2.7"
  28. [target.'cfg(windows)'.dependencies.winapi-util]
  29. version = "0.1.2"
  30. [dev-dependencies]
  31. crossbeam-channel = "0.4.0"
  32. [features]
  33. simd-accel = ["globset/simd-accel"]