Exclude test directory for package (#65)

* Exclude test directory for package

* Update Cargo.toml

* Also exclude fuzz and deexclude non-existant spec
This commit is contained in:
Nikolay Volf 2018-02-23 00:45:27 +03:00 committed by Sergey Pepyakin
parent f1a3f06d5e
commit 5bb5b6809c
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
readme = "README.md"
description = "WebAssembly interpreter"
keywords = ["wasm", "webassembly", "bytecode", "interpreter"]
exclude = [ "res/*", "spec/*" ]
exclude = [ "res/*", "tests/*", "fuzz/*" ]
[dependencies]
parity-wasm = "0.27"