Skip to content

Commit a76e0a0

Browse files
authored
cargo: 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. PR #1289
1 parent 19172cc commit a76e0a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ finite automata and guarantees linear time matching on all inputs.
1313
"""
1414
categories = ["text-processing"]
1515
autotests = false
16-
exclude = ["/fuzz/*", "/record/*", "/scripts/*", "/.github/*"]
16+
exclude = ["/fuzz/*", "/record/*", "/scripts/*", "tests/fuzz/*", "/.github/*"]
1717
edition = "2021"
1818
rust-version = "1.65"
1919

0 commit comments

Comments
 (0)