From 8b32ed483afaebb4a473afa641ad45091ab6256e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 15 Sep 2022 06:27:29 -0700 Subject: [PATCH] bidi: exclude test data from crates.io I thought that I might need to do something to make the tests happy with this, but they are not run as part of the pre-publish checks and they shouldn't be run once vendored, so perhaps it is just as simple as excluding and publishing? refs: https://github.com/wez/wezterm/issues/2518 --- bidi/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bidi/Cargo.toml b/bidi/Cargo.toml index 4d75f926b..dc83fb23d 100644 --- a/bidi/Cargo.toml +++ b/bidi/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "wezterm-bidi" -version = "0.2.0" +version = "0.2.1" edition = "2021" repository = "https://github.com/wez/wezterm" description = "The Unicode Bidi Algorithm (UBA)" license = "MIT AND Unicode-DFS-2016" +exclude = ["/data"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html