mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-26 01:43:57 -07:00
benchsuite
ci
doc
globset
benches
src
Cargo.toml
README.md
grep
pkg
src
tests
.gitignore
.travis.yml
CHANGELOG.md
COPYING
Cargo.lock
Cargo.toml
HomebrewFormula
LICENSE-MIT
README.md
UNLICENSE
appveyor.yml
compile
This commit completes the initial move of glob matching to an external crate, including fixing up cross platform support, polishing the external crate for others to use and fixing a number of bugs in the process. Fixes #87, #127, #131
20 lines
280 B
TOML
20 lines
280 B
TOML
[package]
|
|
name = "globset"
|
|
version = "0.1.0"
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
[lib]
|
|
name = "globset"
|
|
bench = false
|
|
|
|
[dependencies]
|
|
aho-corasick = "0.5.3"
|
|
fnv = "1.0"
|
|
lazy_static = "0.2"
|
|
log = "0.3"
|
|
memchr = "0.1"
|
|
regex = "0.1.77"
|
|
|
|
[dev-dependencies]
|
|
glob = "0.2"
|