[package] name = "grep" version = "0.3.2" #:version authors = ["Andrew Gallant "] 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" readme = "README.md" keywords = ["regex", "grep", "egrep", "search", "pattern"] license = "Unlicense OR MIT" edition = "2021" [dependencies] grep-cli = { version = "0.1.11", path = "../cli" } grep-matcher = { version = "0.1.7", path = "../matcher" } grep-pcre2 = { version = "0.1.8", path = "../pcre2", optional = true } grep-printer = { version = "0.2.2", path = "../printer" } grep-regex = { version = "0.1.13", path = "../regex" } grep-searcher = { version = "0.1.14", path = "../searcher" } [dev-dependencies] termcolor = "1.0.4" walkdir = "2.2.7" [features] pcre2 = ["grep-pcre2"] # These features are DEPRECATED. Runtime dispatch is used for SIMD now. simd-accel = [] avx-accel = []