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

83 lines
1.8 KiB
TOML
Raw Normal View History

2016-02-27 18:07:26 +02:00
[package]
2016-09-08 22:15:44 +02:00
name = "ripgrep"
2018-08-03 22:13:31 +02:00
version = "0.9.0" #:version
2016-02-27 18:07:26 +02:00
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """
ripgrep is a line-oriented search tool that recursively searches your current
directory for a regex pattern while respecting your gitignore rules. ripgrep
has first class support on Windows, macOS and Linux
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"]
2017-01-21 18:31:09 +02:00
categories = ["command-line-utilities", "text-processing"]
license = "Unlicense OR MIT"
exclude = ["HomebrewFormula"]
build = "build.rs"
autotests = false
2016-02-27 18:07:26 +02:00
2017-08-24 01:54:33 +02:00
[badges]
travis-ci = { repository = "BurntSushi/ripgrep" }
appveyor = { repository = "BurntSushi/ripgrep" }
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"
2017-12-19 01:04:49 +02:00
[workspace]
members = [
"globset",
"grep",
"grep-matcher",
"grep-pcre2",
"grep-printer",
"grep-regex",
"grep-searcher",
"ignore",
]
2017-12-19 01:04:49 +02:00
2016-02-27 18:07:26 +02:00
[dependencies]
atty = "0.2.11"
2018-04-21 18:09:15 +02:00
globset = { version = "0.4.0", path = "globset" }
grep = { version = "0.2.0", path = "grep" }
2018-02-11 20:42:59 +02:00
ignore = { version = "0.4.0", path = "ignore" }
2017-11-30 18:51:06 +02:00
lazy_static = "1"
log = "0.4"
2016-08-26 03:44:37 +02:00
num_cpus = "1"
regex = "1"
same-file = "1"
serde_json = "1"
2018-07-18 00:37:02 +02:00
termcolor = "1"
2016-08-26 03:44:37 +02:00
[dependencies.clap]
version = "2.29.4"
default-features = false
features = ["suggestions", "color"]
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = ["std", "fileapi", "winnt"]
[build-dependencies]
2017-11-30 18:51:06 +02:00
lazy_static = "1"
[build-dependencies.clap]
version = "2.29.4"
default-features = false
features = ["suggestions", "color"]
[features]
avx-accel = ["grep/avx-accel"]
simd-accel = ["grep/simd-accel"]
pcre2 = ["grep/pcre2"]
2016-02-27 18:07:26 +02:00
[profile.release]
debug = 1