From 5dc714e4cc7a0ecaf43af6ed14361e2ac8dbd1ad Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Mon, 25 Aug 2025 17:22:06 +0000 Subject: [PATCH] Also exclude tests/fuzz from the package I missed more binary test data `tests/fuzz/` in #1281, which should remove another 56KiB from the regex crate. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index be69acf12..a5370977a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ finite automata and guarantees linear time matching on all inputs. """ categories = ["text-processing"] autotests = false -exclude = ["/fuzz/*", "/record/*", "/scripts/*", "/.github/*"] +exclude = ["/fuzz/*", "/record/*", "/scripts/*", "tests/fuzz/*", "/.github/*"] edition = "2021" rust-version = "1.65"