1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-03-23 04:34:39 +02:00

cargo: reduce the size of the .crate file published to crates.io

None of this stuff is needed for the main ripgrep crate.

Closes #1940
This commit is contained in:
Kevin Svetlitski 2021-07-19 18:32:59 -05:00 committed by Andrew Gallant
parent cb7501ff11
commit 9df8ab42b1

View File

@ -13,7 +13,14 @@ repository = "https://github.com/BurntSushi/ripgrep"
keywords = ["regex", "grep", "egrep", "search", "pattern"]
categories = ["command-line-utilities", "text-processing"]
license = "Unlicense OR MIT"
exclude = ["HomebrewFormula"]
exclude = [
"HomebrewFormula",
"/.github/",
"/ci/",
"/pkg/",
"/benchsuite/",
"/scripts/",
]
build = "build.rs"
autotests = false
edition = "2018"