Skip to content

Commit 287b425

Browse files
bors[bot]bjfish
andauthored
Merge #836
836: Update cranelift backend to fork version 0.44.0 r=bjfish a=bjfish <!-- Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test: https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests --> # Description Update cranelift dependency to updated fork version 0.44.0 <!-- Provide details regarding the change including motivation, links to related issues, and the context of the PR. --> # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Brandon Fish <brandon.j.fish@gmail.com>
2 parents 44e9086 + 6c36185 commit 287b425

File tree

6 files changed

+54
-45
lines changed

6 files changed

+54
-45
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Blocks of changes will separated by version increments.
66

77
## **[Unreleased]**
88

9+
- [#835](https://github.com/wasmerio/wasmer/pull/836) Update Cranelift fork version to `0.44.0`
910
- [#839](https://github.com/wasmerio/wasmer/pull/839) Change supported version to stable Rust 1.37+
1011
- [#834](https://github.com/wasmerio/wasmer/pull/834) Fix panic when unwraping `wasmer` arguments
1112
- [#833](https://github.com/wasmerio/wasmer/pull/833) Add doc example of using ImportObject's new `maybe_with_namespace` method

Cargo.lock

+44-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/clif-backend/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ readme = "README.md"
1010

1111
[dependencies]
1212
wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" }
13-
cranelift-native = "0.43.1"
14-
cranelift-codegen = "0.43.1"
15-
cranelift-entity = "0.43.1"
16-
cranelift-frontend = { package = "wasmer-clif-fork-frontend", version = "0.43.1" }
17-
cranelift-wasm = { package = "wasmer-clif-fork-wasm", version = "0.43.1" }
13+
cranelift-native = "0.44.0"
14+
cranelift-codegen = "0.44.0"
15+
cranelift-entity = "0.44.0"
16+
cranelift-frontend = { package = "wasmer-clif-fork-frontend", version = "0.44.0" }
17+
cranelift-wasm = { package = "wasmer-clif-fork-wasm", version = "0.44.0" }
1818
target-lexicon = "0.8.1"
19-
wasmparser = "0.37.0"
19+
wasmparser = "0.39.1"
2020
byteorder = "1.3.2"
2121
nix = "0.15.0"
2222
libc = "0.2.60"

lib/llvm-backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88
[dependencies]
99
wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" }
10-
wasmparser = "0.37.0"
10+
wasmparser = "0.39.1"
1111
smallvec = "0.6"
1212
goblin = "0.0.24"
1313
libc = "0.2.60"

lib/runtime-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010
[dependencies]
1111
nix = "0.15"
1212
page_size = "0.4"
13-
wasmparser = "0.37.0"
13+
wasmparser = "0.39.1"
1414
parking_lot = "0.9"
1515
lazy_static = "1.4"
1616
errno = "0.2"

lib/singlepass-backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010

1111
[dependencies]
1212
wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" }
13-
wasmparser = "0.37.0"
13+
wasmparser = "0.39.1"
1414
dynasm = "0.3.2"
1515
dynasmrt = "0.3.1"
1616
lazy_static = "1.4"

0 commit comments

Comments
 (0)