1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2024-12-12 19:18:24 +02:00
ripgrep/grep-searcher/Cargo.toml

34 lines
965 B
TOML
Raw Normal View History

[package]
name = "grep-searcher"
2019-08-06 15:50:52 +02:00
version = "0.1.6" #:version
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-06-26 22:47:33 +02:00
bstr = { version = "0.2.0", default-features = false, features = ["std"] }
bytecount = "0.6"
encoding_rs = "0.8.14"
encoding_rs_io = "0.1.6"
2019-04-15 23:53:29 +02:00
grep-matcher = { version = "0.1.2", path = "../grep-matcher" }
log = "0.4.5"
2019-01-19 16:55:24 +02:00
memmap = "0.7"
[dev-dependencies]
2019-04-15 23:56:04 +02:00
grep-regex = { version = "0.1.3", path = "../grep-regex" }
regex = "1.1"
[features]
default = ["bytecount/runtime-dispatch-simd"]
simd-accel = ["encoding_rs/simd-accel"]
# This feature is DEPRECATED. Runtime dispatch is used for SIMD now.
avx-accel = []