2016-06-20 22:53:48 +02:00
|
|
|
[package]
|
|
|
|
name = "grep"
|
2018-09-08 23:12:14 +02:00
|
|
|
version = "0.2.3" #:version
|
2016-06-20 22:53:48 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Fast line oriented regex searching as a library.
|
|
|
|
"""
|
2016-09-14 03:13:33 +02:00
|
|
|
documentation = "http://burntsushi.net/rustdoc/grep/"
|
2016-09-08 22:15:44 +02:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
2016-06-20 22:53:48 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2018-09-07 19:14:31 +02:00
|
|
|
grep-cli = { version = "0.1.1", path = "../grep-cli" }
|
|
|
|
grep-matcher = { version = "0.1.1", path = "../grep-matcher" }
|
2018-09-08 23:12:14 +02:00
|
|
|
grep-pcre2 = { version = "0.1.2", path = "../grep-pcre2", optional = true }
|
2018-09-07 19:14:31 +02:00
|
|
|
grep-printer = { version = "0.1.1", path = "../grep-printer" }
|
|
|
|
grep-regex = { version = "0.1.1", path = "../grep-regex" }
|
|
|
|
grep-searcher = { version = "0.1.1", path = "../grep-searcher" }
|
2018-08-03 23:26:22 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
atty = "0.2.11"
|
2018-09-07 18:02:22 +02:00
|
|
|
regex = "1"
|
2018-08-03 23:26:22 +02:00
|
|
|
termcolor = "1"
|
2018-08-23 15:54:45 +02:00
|
|
|
walkdir = "2.2.2"
|
2018-08-03 23:26:22 +02:00
|
|
|
|
2018-09-07 18:02:22 +02:00
|
|
|
[dev-dependencies.clap]
|
|
|
|
version = "2.32.0"
|
|
|
|
default-features = false
|
|
|
|
features = ["suggestions"]
|
|
|
|
|
2018-08-03 23:26:22 +02:00
|
|
|
[features]
|
|
|
|
avx-accel = ["grep-searcher/avx-accel"]
|
|
|
|
simd-accel = ["grep-searcher/simd-accel"]
|
|
|
|
pcre2 = ["grep-pcre2"]
|