From d9ef270d273e3f7c61e2e167b7efbd33b36d0c96 Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Fri, 29 Apr 2022 17:31:28 -0700 Subject: [PATCH] Make include patterns stricter This slightly reduces the size of the crate uploaded to crates.io. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ade79700f..b851a8f87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,9 +14,9 @@ include = [ "/build.rs", "/src/", "/vendor/highlights/*.scm", - "/vendor/**/*.c", - "/vendor/**/*.h", - "/vendor/**/*.cc", + "/vendor/*-src/**/*.c", + "/vendor/*-src/**/*.h", + "/vendor/*-src/**/*.cc", "/README.md", ]