2016-06-20 16:53:48 -04:00
|
|
|
[package]
|
|
|
|
name = "grep"
|
2023-11-27 21:36:54 -05:00
|
|
|
version = "0.3.1" #:version
|
2016-06-20 16:53:48 -04:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Fast line oriented regex searching as a library.
|
|
|
|
"""
|
2020-11-03 07:33:36 -08:00
|
|
|
documentation = "https://docs.rs/grep"
|
2020-02-28 17:31:43 -08:00
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/grep"
|
2016-06-20 16:53:48 -04:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
2022-05-09 04:52:11 -07:00
|
|
|
license = "Unlicense OR MIT"
|
2023-09-26 17:15:14 -04:00
|
|
|
edition = "2021"
|
2016-06-20 16:53:48 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2023-11-26 14:13:40 -05:00
|
|
|
grep-cli = { version = "0.1.10", path = "../cli" }
|
2023-11-26 14:15:34 -05:00
|
|
|
grep-matcher = { version = "0.1.7", path = "../matcher" }
|
2023-11-26 14:17:11 -05:00
|
|
|
grep-pcre2 = { version = "0.1.7", path = "../pcre2", optional = true }
|
2023-11-27 21:36:44 -05:00
|
|
|
grep-printer = { version = "0.2.1", path = "../printer" }
|
2023-11-26 14:16:31 -05:00
|
|
|
grep-regex = { version = "0.1.12", path = "../regex" }
|
2023-11-27 21:35:53 -05:00
|
|
|
grep-searcher = { version = "0.1.13", path = "../searcher" }
|
2018-08-03 17:26:22 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-19 09:32:32 -05:00
|
|
|
termcolor = "1.0.4"
|
|
|
|
walkdir = "2.2.7"
|
2018-08-03 17:26:22 -04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
simd-accel = ["grep-searcher/simd-accel"]
|
|
|
|
pcre2 = ["grep-pcre2"]
|
2019-01-19 09:52:10 -05:00
|
|
|
|
|
|
|
# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
|
|
|
|
avx-accel = []
|