[package] name = "grep" version = "0.2.8" #: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/MIT" edition = "2018" [dependencies] grep-cli = { version = "0.1.6", path = "../cli" } grep-matcher = { version = "0.1.5", path = "../matcher" } grep-pcre2 = { version = "0.1.5", path = "../pcre2", optional = true } grep-printer = { version = "0.1.6", path = "../printer" } grep-regex = { version = "0.1.9", path = "../regex" } grep-searcher = { version = "0.1.8", 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 = []