2016-10-01 01:42:41 +02:00
|
|
|
[package]
|
|
|
|
name = "globset"
|
2019-06-26 22:53:30 +02:00
|
|
|
version = "0.4.4" #: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]
|
2019-04-03 19:51:26 +02:00
|
|
|
aho-corasick = "0.7.3"
|
2019-06-26 22:47:33 +02:00
|
|
|
bstr = { version = "0.2.0", default-features = false, features = ["std"] }
|
2018-09-07 19:14:31 +02:00
|
|
|
fnv = "1.0.6"
|
|
|
|
log = "0.4.5"
|
2019-04-05 00:33:41 +02:00
|
|
|
regex = "1.1.5"
|
2016-10-11 01:16:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-04-14 22:57:08 +02:00
|
|
|
glob = "0.3.0"
|
2016-10-12 01:57:09 +02:00
|
|
|
|
|
|
|
[features]
|
2018-05-07 19:07:30 +02:00
|
|
|
simd-accel = []
|