PageRenderTime 50ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/crates/globset/Cargo.toml

https://github.com/BurntSushi/ripgrep
TOML | 36 lines | 32 code | 4 blank | 0 comment | 0 complexity | 63bfc038c9000cb91fd844360e6ca5a3 MD5 | raw file
Possible License(s): MIT, Unlicense
  1. [package]
  2. name = "globset"
  3. version = "0.4.5" #:version
  4. authors = ["Andrew Gallant <jamslam@gmail.com>"]
  5. description = """
  6. Cross platform single glob and glob set matching. Glob set matching is the
  7. process of matching one or more glob patterns against a single candidate path
  8. simultaneously, and returning all of the globs that matched.
  9. """
  10. documentation = "https://docs.rs/globset"
  11. homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
  12. repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
  13. readme = "README.md"
  14. keywords = ["regex", "glob", "multiple", "set", "pattern"]
  15. license = "Unlicense/MIT"
  16. [lib]
  17. name = "globset"
  18. bench = false
  19. [dependencies]
  20. aho-corasick = "0.7.3"
  21. bstr = { version = "0.2.0", default-features = false, features = ["std"] }
  22. fnv = "1.0.6"
  23. log = "0.4.5"
  24. regex = "1.1.5"
  25. serde = { version = "1.0.104", optional = true }
  26. [dev-dependencies]
  27. glob = "0.3.0"
  28. lazy_static = "1"
  29. serde_json = "1.0.45"
  30. [features]
  31. simd-accel = []
  32. serde1 = ["serde"]