[Cargo.toml] Fix package.exclude warnings

IIUC, the existing exclude rule has meant to do what it will do in the
future (gitignore-like matching, not glob-only matching). This fix makes
the rule to do what it was expected to do, and is forward-compatible,
therefore fixing the warning messages.
This commit is contained in:
Behnam Esfahbod 2017-09-01 15:43:32 -07:00
parent 6bc3039b4f
commit a529ca5e65
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ readme = "README.md"
build = "build.rs"
exclude = [
"book-example/*",
"src/theme/stylus",
"src/theme/stylus/**",
]
[dependencies]