mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-01-03 05:10:12 +02:00
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "grep-searcher"
|
|
version = "0.1.8" #: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/tree/master/crates/searcher"
|
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/searcher"
|
|
readme = "README.md"
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
license = "Unlicense/MIT"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bstr = { version = "0.2.0", default-features = false, features = ["std"] }
|
|
bytecount = "0.6"
|
|
encoding_rs = "0.8.14"
|
|
encoding_rs_io = "0.1.6"
|
|
grep-matcher = { version = "0.1.5", path = "../matcher" }
|
|
log = "0.4.5"
|
|
memmap = { package = "memmap2", version = "0.3.0" }
|
|
|
|
[dev-dependencies]
|
|
grep-regex = { version = "0.1.9", path = "../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 = []
|