2016-09-30 19:42:41 -04:00
|
|
|
[package]
|
|
|
|
name = "globset"
|
2022-06-10 14:10:34 -04:00
|
|
|
version = "0.4.9" #:version
|
2016-09-30 19:42:41 -04:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
2016-10-10 19:50:21 -04: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"
|
2020-02-28 17:31:43 -08:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
|
2016-10-10 20:03:08 -04:00
|
|
|
readme = "README.md"
|
2016-10-10 19:50:21 -04:00
|
|
|
keywords = ["regex", "glob", "multiple", "set", "pattern"]
|
2022-05-09 04:52:11 -07:00
|
|
|
license = "Unlicense OR MIT"
|
2021-06-01 19:31:27 -04:00
|
|
|
edition = "2018"
|
2016-09-30 19:42:41 -04:00
|
|
|
|
2016-10-10 19:16:52 -04:00
|
|
|
[lib]
|
|
|
|
name = "globset"
|
|
|
|
bench = false
|
|
|
|
|
2016-09-30 19:42:41 -04:00
|
|
|
[dependencies]
|
2019-04-03 13:51:26 -04:00
|
|
|
aho-corasick = "0.7.3"
|
2019-06-26 16:47:33 -04:00
|
|
|
bstr = { version = "0.2.0", default-features = false, features = ["std"] }
|
2018-09-07 13:14:31 -04:00
|
|
|
fnv = "1.0.6"
|
2022-06-10 11:10:09 -07:00
|
|
|
log = { version = "0.4.5", optional = true }
|
2020-10-19 23:59:05 +05:30
|
|
|
regex = { version = "1.1.5", default-features = false, features = ["perf", "std"] }
|
2020-02-21 04:40:47 -08:00
|
|
|
serde = { version = "1.0.104", optional = true }
|
2016-10-10 19:16:52 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-04-14 16:57:08 -04:00
|
|
|
glob = "0.3.0"
|
2019-11-25 10:04:27 +00:00
|
|
|
lazy_static = "1"
|
2020-02-21 04:40:47 -08:00
|
|
|
serde_json = "1.0.45"
|
2016-10-11 19:57:09 -04:00
|
|
|
|
|
|
|
[features]
|
2022-06-10 11:10:09 -07:00
|
|
|
default = ["log"]
|
2018-05-07 19:07:30 +02:00
|
|
|
simd-accel = []
|
2020-02-21 04:40:47 -08:00
|
|
|
serde1 = ["serde"]
|