From fa1cba92c9d60a3707451144a9a52660af8d626a Mon Sep 17 00:00:00 2001 From: Sergey Pepyakin Date: Thu, 18 Jan 2018 15:22:46 +0300 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9a0cb36..92c8a72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,16 @@ [package] name = "parity-wasm-interp" version = "0.1.0" -authors = ["Sergey Pepyakin "] +authors = ["Nikolay Volf ", "Svyatoslav Nikolsky ", "Sergey Pepyakin "] +license = "MIT/Apache-2.0" +readme = "README.md" +description = "WebAssembly interpreter" +keywords = ["wasm", "webassembly", "bytecode", "interpreter"] +exclude = [ "res/*", "spec/*" ] [dependencies] -# parity-wasm = "0.20" -parity-wasm = { path = "/Users/pepyakin/dev/parity/parity-wasm" } -wabt = "0.1" +parity-wasm = "0.20" byteorder = "1.0" + +[dev-dependencies] +wabt = "0.1.2"