summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Svetlitski <kevin_svetlitski@berkeley.edu>2021-07-19 18:32:59 -0500
committerAndrew Gallant <jamslam@gmail.com>2023-07-08 18:52:42 -0400
commit9df8ab42b1ebdb11562b6413e25e63f6d410a4a5 (patch)
tree915caa214185ccb9f5212b03dba8a53d0b47016a
parentcb7501ff111d32f636138cfc8975289fc5001f50 (diff)
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
-rw-r--r--Cargo.toml9
1 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bd9ee7cb..ac4c9b44 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"