1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
Source: rust-ripgrep
Section: utils
Priority: optional
Build-Depends: debhelper (>= 12),
dh-cargo (>= 25),
cargo:native,
rustc:native (>= 1.70),
libstd-rust-dev,
librust-anyhow-1+default-dev (>= 1.0.75-~~),
librust-bstr-1+default-dev (>= 1.7.0-~~),
librust-grep-0.3+default-dev (>= 0.3.2-~~),
librust-ignore-0.4+default-dev (>= 0.4.23-~~),
librust-lexopt-0.3+default-dev,
librust-log-0.4+default-dev (>= 0.4.5-~~),
librust-serde-json-1+default-dev (>= 1.0.23-~~),
librust-termcolor-1+default-dev (>= 1.4.0-~~),
librust-textwrap-0.16-dev,
asciidoc,
bash-completion,
xsltproc,
docbook-xsl,
librust-grep-dev (>= 0.2.8-3)
Maintainer: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
Uploaders:
Sylvestre Ledru <sylvestre@debian.org>
Standards-Version: 4.6.2
Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/ripgrep]
Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/ripgrep
Homepage: https://github.com/BurntSushi/ripgrep
X-Cargo-Crate: ripgrep
Rules-Requires-Root: no
Package: ripgrep
Architecture: any
Multi-Arch: allowed
Depends:
${misc:Depends},
${shlibs:Depends},
${cargo:Depends}
Recommends:
${cargo:Recommends}
Suggests:
${cargo:Suggests}
Provides:
${cargo:Provides}
Built-Using: ${cargo:Built-Using}
XB-X-Cargo-Built-Using: ${cargo:X-Cargo-Built-Using}
Description: Recursively searches directories for a regex pattern
ripgrep is a line-oriented search tool that recursively searches your current
directory for a regex pattern while respecting your gitignore rules and
automatically skip hidden files/directories (smart filtering) and binary files.
ripgrep is similar to other popular search tools like The Silver Searcher, ack
and grep.
.
ripgrep is generally faster than both The Silver Searcher and GNU grep. It
defaults to recursive directory search and won't search files ignored by your
`.gitignore` files. Use ripgrep if you like speed, filtering by default, fewer
bugs, and Unicode support.
.
On the other hand, if you like multiline search, then ripgrep may not quite
meet your needs (yet), and it will never support fancy regex features such as
backreferences or lookaround
|