Skip to content

Commit 2129da6

Browse files
committed
actually exclude test files from packaging
package.exclude takes glob syntax for determining what files to exclude when excluding directories. big-data-url.css is also quite large and should be excluded from packaging as well. Fixes #169.
1 parent 5e9c5cb commit 2129da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["css", "syntax", "parser"]
1212
license = "MPL-2.0"
1313
build = "build.rs"
1414

15-
exclude = ["src/css-parsing-tests"]
15+
exclude = ["src/css-parsing-tests/**", "src/big-data-url.css"]
1616

1717
[dev-dependencies]
1818
rustc-serialize = "0.3"

0 commit comments

Comments
 (0)