From 7777d0efcde5e05a659ad2fa7be2029c164dfe68 Mon Sep 17 00:00:00 2001 From: Marcus Klaas de Vries Date: Mon, 11 Nov 2019 19:24:49 +0100 Subject: [PATCH] Remove benchmarks from Cargo exclusion list When the benchmarks are excluded from the release, Cargo is not able to locate the html_rendering benchmark and publication will fail. There is something to be said for benchmark exclusion from releases, but I don't see a way to exclude them from releases without removing benchmarks altogether. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c578119b..eeb30c7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ keywords = ["markdown", "commonmark"] categories = ["text-processing"] edition = "2018" readme = "README.md" -exclude = ["/third_party/**/*", "/tools/**/*", "/specs/**/*", "/fuzzer/**/*", "/benches/**/*", "/azure-pipelines.yml"] +exclude = ["/third_party/**/*", "/tools/**/*", "/specs/**/*", "/fuzzer/**/*", "/azure-pipelines.yml"] build = "build.rs"