1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-29 22:01:04 +02:00
ripgrep/crates/globset/Cargo.toml

39 lines
1.1 KiB
TOML
Raw Normal View History

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