2016-09-30 19:42:41 -04:00
|
|
|
[package]
|
|
|
|
name = "globset"
|
2023-11-26 14:11:05 -05:00
|
|
|
version = "0.4.14" #: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"
|
2023-09-26 15:01:20 -04:00
|
|
|
edition = "2021"
|
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]
|
2023-09-26 15:01:20 -04:00
|
|
|
aho-corasick = "1.1.1"
|
|
|
|
bstr = { version = "1.6.2", default-features = false, features = ["std"] }
|
|
|
|
log = { version = "0.4.20", optional = true }
|
|
|
|
serde = { version = "1.0.188", optional = true }
|
|
|
|
|
|
|
|
[dependencies.regex-syntax]
|
2023-10-09 18:23:36 -04:00
|
|
|
version = "0.8.0"
|
2023-09-26 15:01:20 -04:00
|
|
|
default-features = false
|
|
|
|
features = ["std"]
|
|
|
|
|
|
|
|
[dependencies.regex-automata]
|
2023-10-09 18:23:36 -04:00
|
|
|
version = "0.4.0"
|
2023-09-26 15:01:20 -04:00
|
|
|
default-features = false
|
|
|
|
features = ["std", "perf", "syntax", "meta", "nfa", "hybrid"]
|
2016-10-10 19:16:52 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-26 15:01:20 -04:00
|
|
|
glob = "0.3.1"
|
|
|
|
serde_json = "1.0.107"
|
2016-10-11 19:57:09 -04:00
|
|
|
|
|
|
|
[features]
|
2022-06-10 11:10:09 -07:00
|
|
|
default = ["log"]
|
2023-09-28 14:17:30 -04:00
|
|
|
# DEPRECATED. It is a no-op. SIMD is done automatically through runtime
|
|
|
|
# dispatch.
|
2018-05-07 19:07:30 +02:00
|
|
|
simd-accel = []
|
2020-02-21 04:40:47 -08:00
|
|
|
serde1 = ["serde"]
|