Skip to content

Commit

Permalink
Remove benchmarks from Cargo exclusion list
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
marcusklaas committed Nov 11, 2019
1 parent efe10f1 commit 7777d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -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"

Expand Down

0 comments on commit 7777d0e

Please sign in to comment.