From 5bb5b6809c0ad7af2352f826b5480701fb9469ed Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Fri, 23 Feb 2018 00:45:27 +0300 Subject: [PATCH] Exclude test directory for package (#65) * Exclude test directory for package * Update Cargo.toml * Also exclude fuzz and deexclude non-existant spec --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3890466..f355cb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"