From 867a6a185dd22115c69371317a871ffcbeb7c1cb Mon Sep 17 00:00:00 2001 From: Sergey Pepyakin Date: Tue, 15 May 2018 16:54:02 +0300 Subject: [PATCH] Use parity-wasm 0.30 instead of git --- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e86495..77847a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ description = "Collection of command-line utilities and corresponding Rust api f keywords = ["wasm", "webassembly", "pwasm"] [dependencies] -parity-wasm = { git = "https://github.com/paritytech/parity-wasm", default-features = false } +parity-wasm = { version = "0.30", default-features = false } log = { version = "0.4", default-features = false } byteorder = { version = "1", default-features = false } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5fdbfab..89ba7ee 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -30,7 +30,7 @@ name = "wasm-stack-height" path = "stack_height/main.rs" [dependencies] -parity-wasm = { git = "https://github.com/paritytech/parity-wasm" } +parity-wasm = "0.30" pwasm-utils = { path = ".." } glob = "0.2" clap = "2.24"