2016-02-27 18:07:26 +02:00
|
|
|
[package]
|
2016-09-08 22:15:44 +02:00
|
|
|
name = "ripgrep"
|
2016-11-10 02:07:25 +02:00
|
|
|
version = "0.2.9" #:version
|
2016-02-27 18:07:26 +02:00
|
|
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
|
|
|
description = """
|
2016-09-14 03:16:18 +02:00
|
|
|
Line oriented search tool using Rust's regex library. Combines the raw
|
|
|
|
performance of grep with the usability of the silver searcher.
|
2016-02-27 18:07:26 +02:00
|
|
|
"""
|
2016-09-08 22:15:44 +02:00
|
|
|
documentation = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
2016-02-27 18:07:26 +02:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
|
|
license = "Unlicense/MIT"
|
2016-10-11 04:24:28 +02:00
|
|
|
exclude = ["HomebrewFormula"]
|
2016-02-27 18:07:26 +02:00
|
|
|
|
2016-08-26 03:44:37 +02:00
|
|
|
[[bin]]
|
|
|
|
bench = false
|
|
|
|
path = "src/main.rs"
|
2016-09-08 22:15:44 +02:00
|
|
|
name = "rg"
|
2016-08-26 03:44:37 +02:00
|
|
|
|
2016-09-10 04:58:30 +02:00
|
|
|
[[test]]
|
|
|
|
name = "integration"
|
|
|
|
path = "tests/tests.rs"
|
|
|
|
|
2016-02-27 18:07:26 +02:00
|
|
|
[dependencies]
|
2016-09-23 04:59:25 +02:00
|
|
|
bytecount = "0.1.4"
|
2016-10-19 05:37:49 +02:00
|
|
|
ctrlc = "2.0"
|
2016-02-27 18:07:26 +02:00
|
|
|
docopt = "0.6"
|
2016-08-28 07:37:12 +02:00
|
|
|
env_logger = "0.3"
|
2016-11-06 22:48:40 +02:00
|
|
|
grep = { version = "0.1.4", path = "grep" }
|
2016-11-10 01:54:22 +02:00
|
|
|
ignore = { version = "0.1.5", path = "ignore" }
|
2016-09-05 23:36:41 +02:00
|
|
|
lazy_static = "0.2"
|
|
|
|
libc = "0.2"
|
2016-08-28 07:37:12 +02:00
|
|
|
log = "0.3"
|
2016-03-11 03:48:44 +02:00
|
|
|
memchr = "0.1"
|
2016-10-12 01:57:09 +02:00
|
|
|
memmap = "0.5"
|
2016-08-26 03:44:37 +02:00
|
|
|
num_cpus = "1"
|
2016-09-22 01:05:15 +02:00
|
|
|
regex = "0.1.77"
|
2016-11-10 03:28:58 +02:00
|
|
|
rustc-serialize = "=0.3.19"
|
2016-09-06 00:22:12 +02:00
|
|
|
term = "0.4"
|
2016-08-26 03:44:37 +02:00
|
|
|
|
2016-09-05 23:36:41 +02:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
kernel32-sys = "0.2"
|
|
|
|
winapi = "0.2"
|
|
|
|
|
2016-08-27 07:01:06 +02:00
|
|
|
[features]
|
2016-11-06 04:44:33 +02:00
|
|
|
avx-accel = ["bytecount/avx-accel"]
|
2016-11-06 23:15:23 +02:00
|
|
|
simd-accel = ["bytecount/simd-accel", "regex/simd-accel"]
|
2016-08-27 07:01:06 +02:00
|
|
|
|
2016-02-27 18:07:26 +02:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|