1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-01-19 05:49:14 +02:00
ripgrep/Cargo.toml

64 lines
1.5 KiB
TOML
Raw Normal View History

2016-02-27 11:07:26 -05:00
[package]
2016-09-08 16:15:44 -04:00
name = "ripgrep"
2017-10-21 22:39:14 -04:00
version = "0.7.0" #:version
2016-02-27 11:07:26 -05:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
2016-09-13 21:16:18 -04: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 11:07:26 -05:00
"""
2016-09-08 16:15:44 -04:00
documentation = "https://github.com/BurntSushi/ripgrep"
homepage = "https://github.com/BurntSushi/ripgrep"
repository = "https://github.com/BurntSushi/ripgrep"
2016-02-27 11:07:26 -05:00
readme = "README.md"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
2017-01-21 11:31:09 -05:00
categories = ["command-line-utilities", "text-processing"]
2016-02-27 11:07:26 -05:00
license = "Unlicense/MIT"
exclude = ["HomebrewFormula"]
build = "build.rs"
2016-02-27 11:07:26 -05:00
2017-08-23 19:54:33 -04:00
[badges]
travis-ci = { repository = "BurntSushi/ripgrep" }
appveyor = { repository = "BurntSushi/ripgrep" }
2016-08-25 21:44:37 -04:00
[[bin]]
bench = false
path = "src/main.rs"
2016-09-08 16:15:44 -04:00
name = "rg"
2016-08-25 21:44:37 -04:00
2016-09-09 22:58:30 -04:00
[[test]]
name = "integration"
path = "tests/tests.rs"
2016-02-27 11:07:26 -05:00
[dependencies]
atty = "0.2.2"
bytecount = "0.1.4"
2017-08-23 19:52:13 -04:00
clap = "2.26"
2017-08-28 13:19:17 +03:00
encoding_rs = "0.7"
2017-02-25 22:56:17 +01:00
env_logger = { version = "0.4", default-features = false }
2017-10-21 22:39:14 -04:00
grep = { version = "0.1.7", path = "grep" }
ignore = { version = "0.3.0", path = "ignore" }
2016-09-05 17:36:41 -04:00
lazy_static = "0.2"
libc = "0.2"
log = "0.3"
2017-10-21 18:45:39 -04:00
memchr = "2"
memmap = "0.5"
2016-08-25 21:44:37 -04:00
num_cpus = "1"
2017-01-13 23:46:21 -05:00
regex = "0.2.1"
same-file = "1"
2017-10-21 22:39:14 -04:00
termcolor = { version = "0.3.3", path = "termcolor" }
2016-08-25 21:44:37 -04:00
[build-dependencies]
2017-08-23 19:52:13 -04:00
clap = "2.26"
lazy_static = "0.2"
[features]
avx-accel = ["bytecount/avx-accel"]
2017-10-21 18:45:24 -04:00
simd-accel = [
"bytecount/simd-accel",
"regex/simd-accel",
"encoding_rs/simd-accel",
]
2016-02-27 11:07:26 -05:00
[profile.release]
debug = true