mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-22 23:53:48 -07:00
benchsuite
ci
complete
doc
globset
grep
grep-cli
grep-matcher
grep-pcre2
grep-printer
grep-regex
grep-searcher
ignore
pkg
scripts
src
termcolor
tests
wincolor
.gitignore
.travis.yml
CHANGELOG.md
COPYING
Cargo.lock
Cargo.toml
FAQ.md
GUIDE.md
HomebrewFormula
ISSUE_TEMPLATE.md
LICENSE-MIT
README.md
UNLICENSE
appveyor.yml
build.rs
rustfmt.toml
snapcraft.yaml
Wrappers usually define things required for snaps to work like library path. Ripgrep being static binary doesn't need it at all. This will give minor speed up in scenarios when ripgrep is ran multiple times and can be considered as good practice for static binaries. PR #979
16 lines
534 B
YAML
16 lines
534 B
YAML
name: ripgrep # you probably want to 'snapcraft register <name>'
|
|
version: '0.8.1' # just for humans, typically '1.2+git' or '1.3.2'
|
|
summary: Fast file searcher # 79 char long summary
|
|
description: |
|
|
ripgrep combines the usability of The Silver Searcher with the raw speed of grep.
|
|
grade: stable # must be 'stable' to release into candidate/stable channels
|
|
confinement: classic # use 'strict' once you have the right plugs and slots
|
|
parts:
|
|
ripgrep:
|
|
plugin: rust
|
|
source: .
|
|
apps:
|
|
rg:
|
|
adapter: none
|
|
command: ./bin/rg
|