mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2024-12-12 19:18:24 +02:00
4846d63539
This commit moves a lot of "utility" code from ripgrep core into grep-cli. Any one of these things might not be worth creating a new crate, but combining everything together results in a fair number of a convenience routines that make up a decent sized crate. There is potentially more we could move into the crate, but much of what remains in ripgrep core is almost entirely dealing with the number of flags we support. In the course of doing moving things to the grep-cli crate, we clean up a lot of gunk and improve failure modes in a number of cases. In particular, we've fixed a bug where other processes could deadlock if they write too much to stderr. Fixes #990
103 lines
2.6 KiB
TOML
103 lines
2.6 KiB
TOML
[package]
|
|
name = "ripgrep"
|
|
version = "0.9.0" #:version
|
|
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
|
|
"""
|
|
documentation = "https://github.com/BurntSushi/ripgrep"
|
|
homepage = "https://github.com/BurntSushi/ripgrep"
|
|
repository = "https://github.com/BurntSushi/ripgrep"
|
|
readme = "README.md"
|
|
keywords = ["regex", "grep", "egrep", "search", "pattern"]
|
|
categories = ["command-line-utilities", "text-processing"]
|
|
license = "Unlicense OR MIT"
|
|
exclude = ["HomebrewFormula"]
|
|
build = "build.rs"
|
|
autotests = false
|
|
|
|
[badges]
|
|
travis-ci = { repository = "BurntSushi/ripgrep" }
|
|
appveyor = { repository = "BurntSushi/ripgrep" }
|
|
|
|
[[bin]]
|
|
bench = false
|
|
path = "src/main.rs"
|
|
name = "rg"
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "tests/tests.rs"
|
|
|
|
[workspace]
|
|
members = [
|
|
"globset",
|
|
"grep",
|
|
"grep-cli",
|
|
"grep-matcher",
|
|
"grep-pcre2",
|
|
"grep-printer",
|
|
"grep-regex",
|
|
"grep-searcher",
|
|
"ignore",
|
|
]
|
|
|
|
[dependencies]
|
|
grep = { version = "0.2.0", path = "grep" }
|
|
ignore = { version = "0.4.0", path = "ignore" }
|
|
lazy_static = "1"
|
|
log = "0.4"
|
|
num_cpus = "1"
|
|
regex = "1"
|
|
serde_json = "1"
|
|
termcolor = "1"
|
|
|
|
[dependencies.clap]
|
|
version = "2.32.0"
|
|
default-features = false
|
|
features = ["suggestions"]
|
|
|
|
[build-dependencies]
|
|
lazy_static = "1"
|
|
|
|
[build-dependencies.clap]
|
|
version = "2.32.0"
|
|
default-features = false
|
|
features = ["suggestions"]
|
|
|
|
[dev-dependencies]
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
|
|
[features]
|
|
avx-accel = ["grep/avx-accel"]
|
|
simd-accel = ["grep/simd-accel"]
|
|
pcre2 = ["grep/pcre2"]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[package.metadata.deb]
|
|
features = ["pcre2"]
|
|
assets = [
|
|
["target/release/rg", "usr/bin/", "755"],
|
|
["COPYING", "usr/share/doc/ripgrep/", "644"],
|
|
["LICENSE-MIT", "usr/share/doc/ripgrep/", "644"],
|
|
["UNLICENSE", "usr/share/doc/ripgrep/", "644"],
|
|
["CHANGELOG.md", "usr/share/doc/ripgrep/CHANGELOG", "644"],
|
|
["README.md", "usr/share/doc/ripgrep/README", "644"],
|
|
["FAQ.md", "usr/share/doc/ripgrep/FAQ", "644"],
|
|
# The man page is automatically generated by ripgrep's build process, so
|
|
# this file isn't actually commited. Instead, to create a dpkg, either
|
|
# create a deployment directory and copy the man page to it, or use the
|
|
# 'ci/build_deb.sh' script.
|
|
["deployment/rg.1", "usr/share/man/man1/rg.1", "644"],
|
|
]
|
|
extended-description = """\
|
|
ripgrep (rg) recursively searches your current directory for a regex pattern.
|
|
By default, ripgrep will respect your .gitignore and automatically skip hidden
|
|
files/directories and binary files.
|
|
"""
|