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:
parent
f1a3f06d5e
commit
5bb5b6809c
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue