]> git.proxmox.com Git - cargo.git/blob - vendor/globset-0.2.0/Cargo.toml
New upstream version 0.22.0
[cargo.git] / vendor / globset-0.2.0 / Cargo.toml
1 [package]
2 name = "globset"
3 version = "0.2.0" #:version
4 authors = ["Andrew Gallant <jamslam@gmail.com>"]
5 description = """
6 Cross platform single glob and glob set matching. Glob set matching is the
7 process of matching one or more glob patterns against a single candidate path
8 simultaneously, and returning all of the globs that matched.
9 """
10 documentation = "https://docs.rs/globset"
11 homepage = "https://github.com/BurntSushi/ripgrep/tree/master/globset"
12 repository = "https://github.com/BurntSushi/ripgrep/tree/master/globset"
13 readme = "README.md"
14 keywords = ["regex", "glob", "multiple", "set", "pattern"]
15 license = "Unlicense/MIT"
16
17 [lib]
18 name = "globset"
19 bench = false
20
21 [dependencies]
22 aho-corasick = "0.6.0"
23 fnv = "1.0"
24 log = "0.3"
25 memchr = "1"
26 regex = "0.2.1"
27
28 [dev-dependencies]
29 glob = "0.2"
30
31 [features]
32 simd-accel = ["regex/simd-accel"]