From bc3555b5f854971e56bb11bbe3d65458fd6d03e9 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2019 22:05:21 +0000 Subject: [PATCH] Update cranelift-codegen requirement from 0.33.0 to 0.36.0 Updates the requirements on [cranelift-codegen](https://github.com/CraneStation/cranelift) to permit the latest version. - [Release notes](https://github.com/CraneStation/cranelift/releases) - [Commits](https://github.com/CraneStation/cranelift/compare/v0.33.0...v0.36.0) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- wasmtime-debug/Cargo.toml | 2 +- wasmtime-environ/Cargo.toml | 2 +- wasmtime-jit/Cargo.toml | 2 +- wasmtime-obj/Cargo.toml | 2 +- wasmtime-runtime/Cargo.toml | 2 +- wasmtime-wasi-c/Cargo.toml | 2 +- wasmtime-wasi/Cargo.toml | 2 +- wasmtime-wast/Cargo.toml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6f715675118c..938a331804c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ name = "wasm2obj" path = "src/wasm2obj.rs" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-native = "0.33.0" wasmtime-debug = { path = "wasmtime-debug" } wasmtime-environ = { path = "wasmtime-environ" } diff --git a/wasmtime-debug/Cargo.toml b/wasmtime-debug/Cargo.toml index 4590d0ffee47..0dc83ee0d9cc 100644 --- a/wasmtime-debug/Cargo.toml +++ b/wasmtime-debug/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" [dependencies] gimli = "0.19.0" wasmparser = { version = "0.34.0" } -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" faerie = "0.10.1" diff --git a/wasmtime-environ/Cargo.toml b/wasmtime-environ/Cargo.toml index 556c2700d921..0076d862451b 100644 --- a/wasmtime-environ/Cargo.toml +++ b/wasmtime-environ/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" lightbeam = { path = "../lightbeam", optional = true } diff --git a/wasmtime-jit/Cargo.toml b/wasmtime-jit/Cargo.toml index a2eeae90fdf7..9c2a57c261ee 100644 --- a/wasmtime-jit/Cargo.toml +++ b/wasmtime-jit/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" cranelift-frontend = "0.33.0" diff --git a/wasmtime-obj/Cargo.toml b/wasmtime-obj/Cargo.toml index bf5763144088..a1321ac1df6d 100644 --- a/wasmtime-obj/Cargo.toml +++ b/wasmtime-obj/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" wasmtime-environ = { path = "../wasmtime-environ" } diff --git a/wasmtime-runtime/Cargo.toml b/wasmtime-runtime/Cargo.toml index 0595d7471d04..95826704c50e 100644 --- a/wasmtime-runtime/Cargo.toml +++ b/wasmtime-runtime/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" wasmtime-environ = { path = "../wasmtime-environ", default-features = false } diff --git a/wasmtime-wasi-c/Cargo.toml b/wasmtime-wasi-c/Cargo.toml index dd35986d39b7..645c2367d088 100644 --- a/wasmtime-wasi-c/Cargo.toml +++ b/wasmtime-wasi-c/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" wasmtime-runtime = { path = "../wasmtime-runtime" } wasmtime-environ = { path = "../wasmtime-environ" } wasmtime-jit = { path = "../wasmtime-jit" } -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" target-lexicon = "0.4.0" diff --git a/wasmtime-wasi/Cargo.toml b/wasmtime-wasi/Cargo.toml index 2dbba8d07ee4..b8d5c21021c1 100644 --- a/wasmtime-wasi/Cargo.toml +++ b/wasmtime-wasi/Cargo.toml @@ -14,7 +14,7 @@ wasmtime-runtime = { path = "../wasmtime-runtime" } wasmtime-environ = { path = "../wasmtime-environ" } wasmtime-jit = { path = "../wasmtime-jit" } wasi-common = { git = "https://github.com/CraneStation/wasi-common", rev = "c3994bf57b5d2f1f973b0e4e37bc385695aa4ed2"} -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-entity = "0.33.0" cranelift-wasm = "0.33.0" target-lexicon = "0.4.0" diff --git a/wasmtime-wast/Cargo.toml b/wasmtime-wast/Cargo.toml index 51e5275ce7cb..c39f38551074 100644 --- a/wasmtime-wast/Cargo.toml +++ b/wasmtime-wast/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = "0.33.0" +cranelift-codegen = "0.36.0" cranelift-native = "0.33.0" cranelift-wasm = "0.33.0" cranelift-entity = "0.33.0"