[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:
parent
6bc3039b4f
commit
a529ca5e65
|
@ -11,7 +11,7 @@ readme = "README.md"
|
|||
build = "build.rs"
|
||||
exclude = [
|
||||
"book-example/*",
|
||||
"src/theme/stylus",
|
||||
"src/theme/stylus/**",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
|
|
Loading…
Reference in New Issue