2016-10-01 01:42:41 +02:00
|
|
|
[package]
|
|
|
|
name = "globset"
|
2018-04-21 18:09:15 +02:00
|
|
|
version = "0.4.0" #:version
|
2016-10-01 01:42:41 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
2016-10-11 01:50:21 +02:00
|
|
|
description = """
|
|
|
|
Cross platform single glob and glob set matching. Glob set matching is the
|
|
|
|
process of matching one or more glob patterns against a single candidate path
|
|
|
|
simultaneously, and returning all of the globs that matched.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/globset"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/globset"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/globset"
|
2016-10-11 02:03:08 +02:00
|
|
|
readme = "README.md"
|
2016-10-11 01:50:21 +02:00
|
|
|
keywords = ["regex", "glob", "multiple", "set", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
2016-10-01 01:42:41 +02:00
|
|
|
|
2016-10-11 01:16:52 +02:00
|
|
|
[lib]
|
|
|
|
name = "globset"
|
|
|
|
bench = false
|
|
|
|
|
2016-10-01 01:42:41 +02:00
|
|
|
[dependencies]
|
2017-01-03 14:27:51 +02:00
|
|
|
aho-corasick = "0.6.0"
|
2016-10-01 01:42:41 +02:00
|
|
|
fnv = "1.0"
|
2018-02-04 04:31:28 +02:00
|
|
|
log = "0.4"
|
2017-10-22 00:45:39 +02:00
|
|
|
memchr = "2"
|
2018-03-10 21:02:06 +02:00
|
|
|
regex = "0.2.9"
|
2016-10-11 01:16:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
glob = "0.2"
|
2016-10-12 01:57:09 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
simd-accel = ["regex/simd-accel"]
|