Skip to content

Commit

Permalink
[Cargo] Fix exclude rules
Browse files Browse the repository at this point in the history
* We need to use `*` or `**` in the excludes, otherwise they don't work.
<rust-lang/cargo#3578> is tracking the issue.
  • Loading branch information
behnam committed Jul 6, 2017
1 parent 2219baa commit c64e1d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ keywords = ["rtl", "unicode", "text", "layout", "bidi"]

# No data is shipped; benches, examples and tests also depend on data.
exclude = [
"benches/",
"data/",
"examples/",
"tests/",
"tools/",
"benches/**",
"data/**",
"examples/**",
"tests/**",
"tools/**",
]

[lib]
Expand Down

0 comments on commit c64e1d2

Please sign in to comment.