summaryrefslogtreecommitdiffstats
path: root/vendor/globset/Cargo.toml
blob: 2f71bef17120d25626ddeb18c712c7f2a92de136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "globset"
version = "0.4.14"
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.
"""
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
documentation = "https://docs.rs/globset"
readme = "README.md"
keywords = [
    "regex",
    "glob",
    "multiple",
    "set",
    "pattern",
]
license = "Unlicense OR MIT"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"

[lib]
name = "globset"
bench = false

[dependencies.aho-corasick]
version = "1.1.1"

[dependencies.bstr]
version = "1.6.2"
features = ["std"]
default-features = false

[dependencies.log]
version = "0.4.20"
optional = true

[dependencies.regex-automata]
version = "0.4.0"
features = [
    "std",
    "perf",
    "syntax",
    "meta",
    "nfa",
    "hybrid",
]
default-features = false

[dependencies.regex-syntax]
version = "0.8.0"
features = ["std"]
default-features = false

[dependencies.serde]
version = "1.0.188"
optional = true

[dev-dependencies.glob]
version = "0.3.1"

[dev-dependencies.serde_json]
version = "1.0.107"

[features]
default = ["log"]
serde1 = ["serde"]
simd-accel = []