summaryrefslogtreecommitdiffstats
path: root/vendor/globset/Cargo.toml
blob: 4a52e0503a0839b6ed41809f41564f8831f83cb8 (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
# 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 = "2018"
name = "globset"
version = "0.4.9"
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 = "0.7.3"

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

[dependencies.fnv]
version = "1.0.6"

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

[dependencies.regex]
version = "1.1.5"
features = [
    "perf",
    "std",
]
default-features = false

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

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

[dev-dependencies.lazy_static]
version = "1"

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

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