From 9df8ab42b1ebdb11562b6413e25e63f6d410a4a5 Mon Sep 17 00:00:00 2001 From: Kevin Svetlitski Date: Mon, 19 Jul 2021 18:32:59 -0500 Subject: [PATCH] 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 --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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"