1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-02-04 06:08:39 +02:00
ripgrep/grep/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

2016-06-20 16:53:48 -04:00
[package]
name = "grep"
2019-04-15 18:03:46 -04:00
version = "0.2.4" #:version
2016-06-20 16:53:48 -04:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
Fast line oriented regex searching as a library.
"""
2016-09-13 21:13:33 -04:00
documentation = "http://burntsushi.net/rustdoc/grep/"
2016-09-08 16:15:44 -04:00
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-06-20 16:53:48 -04:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
license = "Unlicense/MIT"
[dependencies]
2019-04-15 18:02:44 -04:00
grep-cli = { version = "0.1.2", path = "../grep-cli" }
2019-04-15 17:53:29 -04:00
grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
2019-04-15 17:57:03 -04:00
grep-pcre2 = { version = "0.1.3", path = "../grep-pcre2", optional = true }
2019-04-15 18:00:49 -04:00
grep-printer = { version = "0.1.2", path = "../grep-printer" }
2019-04-15 17:56:04 -04:00
grep-regex = { version = "0.1.3", path = "../grep-regex" }
2019-04-15 17:59:22 -04:00
grep-searcher = { version = "0.1.4", path = "../grep-searcher" }
[dev-dependencies]
termcolor = "1.0.4"
walkdir = "2.2.7"
[features]
simd-accel = ["grep-searcher/simd-accel"]
pcre2 = ["grep-pcre2"]
# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
avx-accel = []