From f7e6fa2a04043f9ac3df31ba1885557da950ffe3 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 28 Aug 2018 10:12:56 -0700 Subject: [PATCH] Bump dependency on parity-wasm to 0.32.0 Brings support for atomic instructions! --- crates/cli-support/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/wasm-interpreter/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index 0d44ed2c..fe075b6c 100644 --- a/crates/cli-support/Cargo.toml +++ b/crates/cli-support/Cargo.toml @@ -13,7 +13,7 @@ Shared support for the wasm-bindgen-cli package, an internal dependency [dependencies] base64 = "0.9" failure = "0.1.2" -parity-wasm = "0.31" +parity-wasm = "0.32" serde = "1.0" serde_json = "1.0" tempfile = "3.0" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8926ea97..84352a3b 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -18,7 +18,7 @@ docopt = "1.0" env_logger = "0.5" failure = "0.1.2" log = "0.4" -parity-wasm = "0.31" +parity-wasm = "0.32" rouille = { version = "2.1.0", default-features = false } serde = "1.0" serde_derive = "1.0" diff --git a/crates/wasm-interpreter/Cargo.toml b/crates/wasm-interpreter/Cargo.toml index bce5cbde..7857b47a 100644 --- a/crates/wasm-interpreter/Cargo.toml +++ b/crates/wasm-interpreter/Cargo.toml @@ -11,7 +11,7 @@ Micro-interpreter optimized for wasm-bindgen's use case """ [dependencies] -parity-wasm = "0.31" +parity-wasm = "0.32" [dev-dependencies] tempfile = "3"