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

34 lines
1.1 KiB
TOML
Raw Normal View History

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.
"""
documentation = "https://docs.rs/grep"
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"]
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" }
[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 = []