]> git.proxmox.com Git - rustc.git/blob - vendor/globset/Cargo.toml
New upstream version 1.71.1+dfsg1
[rustc.git] / vendor / globset / Cargo.toml
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2 #
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
7 #
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
11
12 [package]
13 edition = "2018"
14 name = "globset"
15 version = "0.4.10"
16 authors = ["Andrew Gallant <jamslam@gmail.com>"]
17 description = """
18 Cross platform single glob and glob set matching. Glob set matching is the
19 process of matching one or more glob patterns against a single candidate path
20 simultaneously, and returning all of the globs that matched.
21 """
22 homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
23 documentation = "https://docs.rs/globset"
24 readme = "README.md"
25 keywords = [
26 "regex",
27 "glob",
28 "multiple",
29 "set",
30 "pattern",
31 ]
32 license = "Unlicense OR MIT"
33 repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
34
35 [lib]
36 name = "globset"
37 bench = false
38
39 [dependencies.aho-corasick]
40 version = "0.7.3"
41
42 [dependencies.bstr]
43 version = "1.1.0"
44 features = ["std"]
45 default-features = false
46
47 [dependencies.fnv]
48 version = "1.0.6"
49
50 [dependencies.log]
51 version = "0.4.5"
52 optional = true
53
54 [dependencies.regex]
55 version = "1.1.5"
56 features = [
57 "perf",
58 "std",
59 ]
60 default-features = false
61
62 [dependencies.serde]
63 version = "1.0.104"
64 optional = true
65
66 [dev-dependencies.glob]
67 version = "0.3.0"
68
69 [dev-dependencies.lazy_static]
70 version = "1"
71
72 [dev-dependencies.serde_json]
73 version = "1.0.45"
74
75 [features]
76 default = ["log"]
77 serde1 = ["serde"]
78 simd-accel = []