From 13e9a133df9ce7b3f91a59f830f4733ae7ef21ef Mon Sep 17 00:00:00 2001 From: Riccardo Casatta Date: Tue, 11 Oct 2022 12:16:52 +0200 Subject: [PATCH] fix test_data dir exclusion As specified in the doc: `foo/` matches any directory with the name `foo` anywhere in the package. --- bitcoin/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 41110419..7e7b87fa 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -9,7 +9,7 @@ documentation = "https://docs.rs/bitcoin/" description = "General purpose library for using and interoperating with Bitcoin and other cryptocurrencies." keywords = [ "crypto", "bitcoin" ] readme = "README.md" -exclude = ["./test_data"] +exclude = ["test_data/"] edition = "2018" # Please don't forget to add relevant features to docs.rs below