2018-04-29 15:29:52 +02:00
|
|
|
[package]
|
|
|
|
name = "grep-searcher"
|
2019-04-15 23:59:22 +02:00
|
|
|
version = "0.1.4" #:version
|
2018-04-29 15:29:52 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
|
|
|
Fast line oriented regex searching as a library.
|
|
|
|
"""
|
|
|
|
documentation = "https://docs.rs/grep-searcher"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-04-03 19:04:52 +02:00
|
|
|
bstr = { version = "0.1.2", default-features = false, features = ["std"] }
|
2019-01-19 16:52:10 +02:00
|
|
|
bytecount = "0.5"
|
2019-01-19 16:32:32 +02:00
|
|
|
encoding_rs = "0.8.14"
|
2019-03-04 18:18:45 +02:00
|
|
|
encoding_rs_io = "0.1.6"
|
2019-04-15 23:53:29 +02:00
|
|
|
grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
|
2018-09-07 19:14:31 +02:00
|
|
|
log = "0.4.5"
|
2019-01-19 16:55:24 +02:00
|
|
|
memmap = "0.7"
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-04-15 23:56:04 +02:00
|
|
|
grep-regex = { version = "0.1.3", path = "../grep-regex" }
|
2019-01-19 16:32:32 +02:00
|
|
|
regex = "1.1"
|
2018-04-29 15:29:52 +02:00
|
|
|
|
|
|
|
[features]
|
2019-01-19 16:52:10 +02:00
|
|
|
default = ["bytecount/runtime-dispatch-simd"]
|
|
|
|
simd-accel = ["encoding_rs/simd-accel"]
|
|
|
|
|
|
|
|
# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
|
|
|
|
avx-accel = []
|