From a529ca5e65ffb3e96415aa1503fccef04e7001a3 Mon Sep 17 00:00:00 2001 From: Behnam Esfahbod Date: Fri, 1 Sep 2017 15:43:32 -0700 Subject: [PATCH] [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. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 188f9768..3b6cd0f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" build = "build.rs" exclude = [ "book-example/*", - "src/theme/stylus", + "src/theme/stylus/**", ] [dependencies]