From ed04607c660e3d46817ac6a561f193cbb62158ae Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Mon, 7 Jun 2021 08:27:50 -0400 Subject: [PATCH] bridge_harfbuzz: exclude some Harfbuzz files from the Cargo package We need to do this to keep the crate size under the 10 MB limit. The main culprit is the test suite. --- crates/bridge_harfbuzz/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/bridge_harfbuzz/Cargo.toml b/crates/bridge_harfbuzz/Cargo.toml index 88c7007f1a..bf82d6fa7c 100644 --- a/crates/bridge_harfbuzz/Cargo.toml +++ b/crates/bridge_harfbuzz/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2020 the Tectonic Project +# Copyright 2020-2021 the Tectonic Project # Licensed under the MIT License. # See README.md for discussion of features (or lack thereof) in this crate. @@ -17,6 +17,7 @@ readme = "README.md" license = "MIT" edition = "2018" links = "harfbuzz" +exclude = ["/harfbuzz/docs/", "/harfbuzz/perf/", "/harfbuzz/test/"] [dependencies] tectonic_bridge_graphite2 = { path = "../bridge_graphite2", version = "0.0.0-dev.0" }